task12.py 396 Bytes
Newer Older
Adam Blank's avatar
Adam Blank committed
1
2
3
4
5
6
7
def go_to_next_round(player, round):
    # TODO (Task 12): write a conditional statement such that if both players have
    # ended a turn, the variable rounds is incremented by 1 else rounds 
    # remains unchanged. Hint: at this stage in the loop, the current 
    # player has finished their turn. Find a condition based on the 
    # value of player. Our solution is 3 lines long.
    return