Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

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)
Source by www.programsbuzz.com #
 
PREVIOUS NEXT
Tagged: #city #stars #words #song #python #code
ADD COMMENT
Topic
Name
7+9 =