We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8cb895f commit daa7821Copy full SHA for daa7821
10X/Python/String/Vowels_101.py
@@ -0,0 +1,7 @@
1
+#Vowels 101
2
+s=input()
3
+count=0
4
+for i in range(len(s)):
5
+ if(s[i]=='a'or s[i]=='e' or s[i]=='i' or s[i]=='o' or s[i]=='u'):
6
+ count+=1
7
+print(count)
0 commit comments