2 157 Python BigDinDonMan 2018-11-20 18:56:58
click to edit code
                        from string import digits, ascii_letters, punctuation
from random import randint
chars = digits + ascii_letters + punctuation
amount = randint(8, 256)
password = [chars[randint(0, len(chars) - 1)] for i in range(amount)]
print("".join(password))
Qache 2018-11-20 22:01:19
moglbys to skrocic hehe