🔐 PyPassword Generator A simple Python script to generate strong, random passwords with customizable counts of letters, numbers, and symbols.
🚀 Features 1.Generate random passwords with: Lowercase & uppercase letters Numbers (0–9) Symbols (!, #, $, %, (, ), *) 2.User inputs define how many of each type to include 3.Password characters are shuffled for maximum randomness
🧾 Example
Welcome to the PyPassword Generator! How many letters would you like in your password?
5 How many symbols would you like in your password? 3 How many numbers would you like in your password? 2 Generated Password: dK#a2(fW7
📦 Requirements Python 3.x
This script only uses built-in libraries: .random .string
🛡️ Security Tip This script is suitable for creating personal passwords but should not be used to generate cryptographic keys or passwords for high-security systems.
🧠 Concepts Covered .Randomization using Python's random module .Working with strings and lists .Taking user input .Shuffling list elements .String concatenation