PASSWORD GENERATOR (Python)
This is a simple Python program that generates a strong and unique password using random letters, numbers, and symbols.
- User can choose:
- Number of letters
- Number of numbers
- Number of symbols
- Password is randomly shuffled
- Generates a strong and unique password each time
- The program asks the user:
- How many letters they want
- How many numbers they want
- How many symbols they want
- Random characters are selected from predefined lists.
- All selected characters are stored in a list.
- The list is shuffled randomly.
- The final password is created and displayed.
- Python 3.x
- No external libraries needed
-
Open terminal or command prompt.
-
Navigate to the project folder.
-
Run the program using:
python password_generator.py
Enter how many letters you want: 4 Enter how many numbers you want: 3 Enter how many symbols you want: 2
Your strong and unique password is! aB3@9f!2D
Neha Paul
Every time you run the program, a new password is generated.