Advertisement
shai

Shai

May 31st, 2011
187
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.17 KB | None | 0 0
  1. #!/usr/bin/python
  2.  
  3. import re, string, sys
  4.  
  5. #counter = sys.argv[1]
  6. counter = 10
  7. count = 1
  8. while (count <= counter):
  9.     print "Hello, World", count,"!"
  10.     count = count + 1
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement