A program should end if the number of the players lives to equal zero. Which of the following lines of code would do that
if lives = 0: exit ()
if lives == 0: exit()
of lives < 0: exit()
if lives == 0: end ()
1 answer
if lives == 0: exit()