Class Python Tutorial

class MyClass(object):
    def talk(self):
        print "an instance of class MyClass."
crit = MyClass()
crit.talk()