Generate Random Password
Create file with extention .py
sample: password.py
Flow:
- Import library random
- Length password based on input user
- Create variable with value string A-Z, 1-0, and Symbol
- Join random string with input length
- Print generated password
- 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)
0 Comments