Password generator using python

oxy_oxide

Hamza Hesham

Posted on June 8, 2020

Password generator using python

Hello, today we will make a simple password generator program using python.
first, we will import random and make 2 new variables:

import random 
chars = "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890-+=!@#$%^&*"
length_of_pass = int(input("num of letters:"))

Second, we will define a function that has one parameter called "num",
Inside the function we will make a new empty variable called password , After that we will loop in the range of "num" using "for loop", Inside the loop we will we will use the random module and add the result to password, outside the for loop we will return password:

def pass_generator(num):
    password = ''
    for i in range(num):
        password += random.choice(chars)
    return password

The last thing we will call the function with the parameter "length_of_pass".
the whole code:

import random 
chars = "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890-+=!@#$%^&*"
length_of_pass = int(input("num of letters:"))
def pass_generator(num):
    password = ''
    for i in range(num):
        password += random.choice(chars)
    return password
print(pass_generator(length_of_pass))

Don't forget to follow me!
Thanks for reading.

💖 💪 🙅 🚩
oxy_oxide
Hamza Hesham

Posted on June 8, 2020

Join Our Newsletter. No Spam, Only the good stuff.

Sign up to receive the latest update from our blog.

Related