Count the Vowels

This commit is contained in:
2023-06-23 22:28:32 +02:00
parent a9261eeab3
commit 1e6af97d37

2
countthevowels.py Normal file
View File

@@ -0,0 +1,2 @@
s = input().strip().lower()
print(sum([s.count(vowel) for vowel in "aeiou"]))