Text Quality Analyzer
Input: `s` (str). Return: Integer count of vowels (a, e, i, o, u) to measure text readability.
Example
Input: 'python'
Output: 1
Need a hint?
- Iterate char by char and check if in 'aeiou'
Run your code to see output
Input: `s` (str). Return: Integer count of vowels (a, e, i, o, u) to measure text readability.
Input: 'python'
Output: 1
Run your code to see output