We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 058c469 commit 2a7acb4Copy full SHA for 2a7acb4
Vowel Count
@@ -0,0 +1,7 @@
1
+def get_count(sentence):
2
+ vocales = 'aeiou'
3
+ cuenta = 0
4
+ for char in sentence:
5
+ if char in vocales:
6
+ cuenta += 1
7
+ return cuenta
0 commit comments