/passwordgenerator

A python script that generates strong passwords

Primary LanguagePython

password_generator

A python script that generates strong passwords by default ten 16-character passwords.

Requirements

👉: Python3 installed

Run the script

  python passwordGenerator.py

Logic

"""

create the following variables

lower ->holds all the lowercasecharacters
upper -> holds all the uppercase characters
numbers -> holds all the numerical characters
symbols -> holds the rest of the symbols||characters

"""
combined = lower + upper + numbers + symbols

password=[]

#Password length
try:
    length = int(input("Enter password length? "))
except ValueError:
    print("Defaulting to 16 character password")
    length = 16
    
#Ask for the amount of password to generate
try:
    num = int(input("How many passwords would You want to generate? "))
except ValueError:
    print("Invalid input...using default value of 10 passwords")
    num = 10

for i in range(num):
    x = "".join(random.sample(combined,length))
    password.append(x)
    
    
print("")
for pas in password:
    print(f'👉🏽:   {pas}')

screensnap of the script

password