Python Password Generator
import random
lower = "abcdefghijklmnopqrstuvwxyz"
upper = "ABCDEFGHIJKLMNOPQRSTUVWXYZ"
number = "0123456789"
symbols = "[]{}()*;|_-"
all = lower + upper + number + symbols
length = 16
password = "".join(random.sample(all,length))
print(password)
...
imkanchan.hashnode.dev2 min read
Himanshu Gupta
Software Developer
great