Random Password Using Python

Generate Random Password

Create file with extention .py
sample: password.py

Flow:
  1. Import library random
  2. Length password based on input user
  3. Create variable with value string A-Z, 1-0, and Symbol
  4. Join random string with input length
  5. Print generated password 
  6. run at terminal "python3 password.py"
import random
password_length = int(input("Enter the length of password ?"))
string="abcdefghijklmnopqrstuvwxyz01234567890ABCDEFGHIJKLMNOPQRSTUVWXYZ!@#$%^&*()?"
password = "".join(random.sample(string, password_length))
print(password)



Post a Comment

0 Comments