Write a function to count the number of vowels in a string.
Count the English vowels a, e, i, o, and u regardless of case. Do not count y or any non-letter character.
The function receives one string and returns an integer representing the number of vowels it contains.
a, e, i, o, and u, regardless of casedef count_vowels(s):