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 ()

Answers

Answered by GPT 3.5
if lives == 0: exit()
There are no human answers yet. A form for humans to post answers is coming very soon!

Related Questions