Password Generator packages = ["random-strings"] from random_strings import * chars = "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789=+!@#$%^&*<>/~-:;?" password = number = input("") int1 = int(number) password = random_string(int1,character_string=chars) print(password)

Password