1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 | 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()
|