Advertisement
Guest User

Untitled

a guest
Apr 22nd, 2018
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. def executeSomething():
  2. chars = '1234567890aBcDeFgHiJkLmNoPqRsTuVwXyZ!@$%^&*()_+-={}[];?'
  3.  
  4. password = ''
  5. for c in range(20):
  6. password += random.choice(chars)
  7. print(password)
  8. time.sleep(2)
  9.  
  10.  
  11. while True:
  12. executeSomething()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement