Advertisement
tryingtoshare

slicestring

May 20th, 2014
193
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.29 KB | None | 0 0
  1. import sys
  2. global passwordlength
  3.  
  4.  
  5. def generatepwd():
  6.     print passwordlength
  7.     output = 'magi#cpasswordphrase'[0:passwordlength]
  8.     return output
  9.  
  10. if len(sys.argv) > 1:
  11.     passwordlength = sys.argv[1]
  12. else:
  13.     passwordlength = 8
  14.  
  15. print passwordlength
  16.  
  17. print generatepwd()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement