Share Pastebin
Guest
Public paste!

licio

By: a guest | Feb 18th, 2010 | Syntax: Python | Size: 0.35 KB | Hits: 188 | Expires: Never
Copy text to clipboard
  1. #Letra da musica "Mulher, Mulher, Mulher (ideia Fixa)"
  2. def resto():
  3.         for b in range(1,11):
  4.                 print "%s mulher," % b
  5.  
  6. def refrao():
  7.         import time
  8.         for i in range(1,6):
  9.                 print "mulher, mulher, mulher"
  10.         time.sleep(3)
  11.         resto()
  12.  
  13. saco = "true"
  14. while saco == "true":
  15.         refrao()