Answers for "city of stars how many words in a song python code"

0

city of stars how many words in a song python code

# Read the input
s = input()

words = str.split(s, ' ')

count = 0

for i in words:
    if(i[0] in 'aeiouAEIOU'):
        count += 1

print(count)
Posted by: Guest on May-08-2022

Code answers related to "city of stars how many words in a song python code"

Python Answers by Framework

Browse Popular Code Answers by Language