class Person: name = "" def __init__ (self): self.name = "I am the nameless bard" def main (): finder = Person () print finder.name main ()