diff --git a/countthevowels.py b/countthevowels.py new file mode 100644 index 0000000..bbac6c9 --- /dev/null +++ b/countthevowels.py @@ -0,0 +1,2 @@ +s = input().strip().lower() +print(sum([s.count(vowel) for vowel in "aeiou"]))