mirror of
https://github.com/antonioCoco/SharPyShell
synced 2026-06-08 13:11:44 +00:00
9 lines
200 B
Python
9 lines
200 B
Python
import string
|
|
import random
|
|
|
|
|
|
def random_generator():
|
|
chars = string.ascii_lowercase + string.digits
|
|
size = random.randint(5, 15)
|
|
return ''.join(random.choice(chars) for x in range(size))
|