class Epona: x=1 def greeting(self): print "Hello Bena" class Bena: x=1 def greeting(self,x): for x in range(0,1000): print "Hello Epona" class Coordinate: X=0 Y=0 def setCoordinate(sX,xY): X = sX Y = sY object1= Epona() object1.greeting()