The Password Forge
A easy Python interview practice problem on DataDriven. Write and execute real python code with instant grading.
- Domain
- Python
- Difficulty
- easy
- Seniority
- L3
Problem
Generate an 8-character password containing at least one uppercase letter, one lowercase letter, one digit, and one special character from '!@#$%^&*'. Use only Python's standard library. The test validator checks the password meets all four requirements (the expected_output '__validate__' signals the grader to run structural checks, not equality).
Summary
Eight random characters - how many combinations exist?
Practice This Problem
Solve this Python problem with real code execution. DataDriven runs your Python code in a real environment and grades it automatically.