Use the accumulator pattern: count how many words in the list have more than 4 characters
A medium Python interview practice problem on DataDriven. Write and execute real python code with instant grading.
- Domain
- Python
- Difficulty
- medium
Problem
Use the accumulator pattern: count how many words in the list have more than 4 characters. Start a counter at 0, loop through, check len() of each word, and increment if it qualifies. Print the count.
Practice This Problem
Solve this Python problem with real code execution. DataDriven runs your Python code in a real environment and grades it automatically.