play_game(). Based on step 4, the function should either print the winner and return a 1 OR it should print "There is a tie" and return a 0. Returning a zero should cause a loop running the game function to be run again until a 1 is returned. (hint: something like
while gamereturn!=1: gamereturn=play_game()is what you want to do here)