
Shekels mk1
By:
waterapple on
Jul 21st, 2013 | syntax:
Python | size: 0.59 KB | hits: 24 | expires: Never
#-------------------------------------------------------------------------------
# Name: Shekel maker
# Purpose: Provide R3Mmy-poo with some dollars
#
# Author: new
#
# Created: 22/07/2013
# Copyright: (c) new 2013
# Licence: <your 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()