City of Stars combien de mots dans une chanson 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)
django