Text Quality Analyzer

Easy
#strings #analysis

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