Title: [Python] Shekels mk1 Author: waterapple Pastebin link: http://pastebin.com/HdYKZudt First Edit: Sunday 21st of July 2013 09:09:56 PM CDT Last Edit: Sunday 21st of July 2013 09:09:56 PM CDT #------------------------------------------------------------------------------- # Name:        Shekel maker # Purpose:      Provide R3Mmy-poo with some dollars # # Author:      new # # Created:     22/07/2013 # Copyright:   (c) new 2013 # Licence:     #------------------------------------------------------------------------------- #!/usr/bin/env python   def shekels(dosh):     money = 1     while money <= dosh:         print u"\u20AA",         money += 1     def main():     cash = 6000000000 #Six Trillion     shekels(cash)   if __name__ == '__main__':     main()