Introduction
A random password generator is software that creates a secure and distinct password by mixing letters, digits, and special characters.
Source Code:
import random
passlen = int(input("enter the length of password: "))
s="abcdefghijklmnopqrstuvwxyz01234567890ABCDEFGHIJKLMNOPQRSTUVWXYZ!@#$%^&*()?"
p ="".join(random.sample(s,passlen))
print(p)
Output
