# Author: James Tam # Version June 14, 2017 # Minor modifications to the init() constructor class Person: def __init__(self, name = "I have no name"): self.name = name def start(): smiley = Person() print("My name is...", smiley.name) jt = Person("James") print("My name is...", jt.name) start()