Password Generator is a Python script that creates secure random passwords using alphanumeric characters. It allows users to specify the number of passwords to generate, with each password defaulting to a length of 36 characters.
- Random Password Generation: Produces passwords consisting of uppercase, lowercase letters, and digits.
- Configurable Password Count and Length: Users can specify how many passwords to generate. The default length of each password is 36 characters.
- Simple and Secure: Generates passwords without special characters to simplify use in various applications.
- Python 3.x
- Modules:
random
,string
To generate passwords, run the script from the command line. The script will prompt for the number of passwords desired, then display each generated password in the terminal.
python password_generator.py