Advertisement
182days

Random Text

Apr 28th, 2016
863
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.17 KB | None | 0 0
  1. #random text generator
  2. import random, time
  3. while True:
  4.     x = random.choice("qwertyuiopasdfghjklzxcvbnm1234567890!@$#%&/()=?¿¡'-.,;:_´¨çÇ+*`^")
  5.     print(x, end='')
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement