Advertisement
Guest User

Untitled

a guest
Jun 23rd, 2021
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. import random
  2. import string
  3. import webbrowser
  4. c = 0
  5. a = 0
  6. while c == 0:
  7. while a !=10:
  8. b = random.randrange(4,6)
  9. letters = string.ascii_lowercase
  10. rand_string = ''.join(random.choice(letters) for i in range(b))
  11. d = (('prnt.sc/')+((str)(rand_string)))
  12. webbrowser.open(d)
  13. a+=1
  14.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement