Run Lola Run

class Woman:
   def run(self):
      print ' o n<|Vn/>n'

lola = Woman()

while True:
   lola.run()
Vote up this code0