# Note the naming used in the module/filename and in the class # name are poor. These names were purposely chosen to help show # the difference between when the module name is referenced # and when the class name is referenced in the import (see # class Person) class ClassDog: def __init__(self,aName): self.name = aName