Li this question and its answers I still have a question.
I wanted a function that counted the number of vowels in a text and stored in a dictionary where the key is the vowel considered.
Li this question and its answers I still have a question.
I wanted a function that counted the number of vowels in a text and stored in a dictionary where the key is the vowel considered.
word = "tal coisa tal"
Delimitador = "aeiou"
k = 0
for i in range(len(word)):
if word[i] in Delimitador:
k++