A simple command-line password generator built with Python.
- Generate random passwords
- Choose the number of letters
- Choose the number of symbols
- Choose the number of numbers
- Randomize the order of characters
- Python 3
randommodule
- Make sure Python 3 is installed.
- Clone this repository:
git clone https://github.com/Ramtinexe/python-password-generator.git- Navigate to the project folder:
cd python-password-generator- Run the program:
python main.pyWelcome to the Py Password Generator!
How many letters would you like in your password?
5
How many symbols would you like?
2
How many numbers would you like?
3
Your password is: aG7#p2!K9x
This project helped me practice:
random.choice()random.shuffle()- Lists
- Loops
- User input
- String manipulation
- Basic Python programming