Loading ...
SeekhoCoding
SELECT PROJECT
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 :

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.

5. Print each successfully generated password directly on the screen along with its total length.
CHECKLIST


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.