Saturday, April 30, 2011

A Little Python

class Hello():
 
 def __init__(self):
  self.nbrTimes = 5
  
 def sayHello(self):
  for x in range(self.nbrTimes):
   print('Hello')
   
hello = Hello()
hello.sayHello()