Guest User

Untitled

a guest
Mar 1st, 2018
98
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.19 KB | None | 0 0
  1. from os import urandom
  2. from binascii import hexlify
  3.  
  4. s = list('1234567890-=!@#$%^&*()_+qwertyuiopasghjklzxcvbnm')
  5. print(''.join([s[int(hexlify(urandom(50)), 16)%len(s)] for i in range(50)]))
Add Comment
Please, Sign In to add comment