# create a class called "Person" class Person: # define init method with parameter "name" def __init__(self, name): # create new variable called "name2" self.name2 = name # Create method "hello" def hello(self): print "Hello world! My name is: ", self.name2 # create object "alpha" of class "Person" # pass argument "Tom" to __init__ method when creating object "alpha" alpha = Person("Tom") # call method "hello" on object "alpha" with "Tom" already sent to object alpha.hello()