The Minion Game

Instructions

The Minion Game

We are tasked with finding which minion, Stuart or Kevin, won the minion game (The rules are explained in the link above).

My solution does the following:

    def minion_game(string):
         s = k = 0
         vowels=['A','E','I','O','U']
         for i in range(len(string)):
             if string[i] in vowels:
                 k += len(string[i:])
             else:
                 s += len(string[i:])
         if s > k :
             print('Stuart',s)
         elif k > s:
             print('Kevin',k)
         else:
             print('Draw')