#!/usr/bin/env python # Filename: method.py class Person: def sayHi(self): print 'Hello, how are you?' p=Person() p.sayHi() # This short example can also be written as Person().sayHi()