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
-
Adam Blank authored562747ea