Skip to content

Commit daa7821

Browse files
#Vowels 101
1 parent 8cb895f commit daa7821

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

10X/Python/String/Vowels_101.py

+7
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)