SELECT PROJECT
๐ Project 1: Real-time Data App
PROJECT GOAL (เคเฅเคฏเคพ เคฌเคจเคพเคจเคพ เคนเฅ)
Create a Password Generator in Python that takes a list of lengths to generate secure, automated
random passwords.
Requirements
1. Inside the Program, use the random and string modules to handle secure character selection loops.
2. The Program will accept a list (password_lengths) containing different length values for each password.
3. Run a for loop to process each length and track the generation steps dynamically.
4. Validation Logic :
Requirements
1. Inside the Program, use the random and string modules to handle secure character selection loops.
2. The Program will accept a list (password_lengths) containing different length values for each password.
3. Run a for loop to process each length and track the generation steps dynamically.
4. Validation Logic :
1. Combine uppercase letters, lowercase letters, digits, and special punctuation
symbols together.
2. Use random.choice() inside a comprehension loop to pick characters randomly based on
length.
3. Ensure every generated password includes characters from all mixed sets for strength.
CHECKLIST
main.py
OUTPUT
โถ Pyodide Console v0.26.0 Ready...
โถ Click the 'Run' button above to execute your Python code.
โถ Your program output or errors will appear here.
โถ Click the 'Run' button above to execute your Python code.
โถ Your program output or errors will appear here.