You are viewing a single comment's thread. Return to all comments →
s = 0 k = 0 for i in range(len(string)): if string[i] in 'AEIOU': k += len(string[i:]) else: s += len(string[i:]) if k > s: print("Kevin", k) elif s > k: print("Stuart", s) else: print("Draw")
Seems like cookies are disabled on this browser, please enable them to open this website
The Minion Game
You are viewing a single comment's thread. Return to all comments →