Code:
<__main__.Person instance at 0x11bd5a8>
Thanks
Iz
<__main__.Person instance at 0x11bd5a8>
run = 1
class Person:
pop = 0
def __init__(self, name):
self.name = name
Person.pop +=1
def sayHi(self):
print 'Hello, my name is', self.name
def countPeople(self):
Leave a comment: