You are viewing a single comment's thread. Return to all comments →
import re n = int(input()) s = input().split() ex = r'[aeiouy]' score = 0 for word in s: a = len(re.findall(ex,word)) if a%2==0: score +=2 else: score +=1 print(score)
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 →