You are viewing a single comment's thread. Return to all comments →
Just the ++score has to be converted into score += 1. Rest of the code stays as it is.
def is_vowel(letter): return letter in ['a', 'e', 'i', 'o', 'u', 'y'] def score_words(words): score = 0 for word in words: num_vowels = 0 for letter in word: if is_vowel(letter): num_vowels += 1 if num_vowels % 2 == 0: score += 2 else: score += 1 return score n = int(input()) words = input().split() print(score_words(words))
Seems like cookies are disabled on this browser, please enable them to open this website
Words Score
You are viewing a single comment's thread. Return to all comments →
Just the ++score has to be converted into score += 1. Rest of the code stays as it is.