108k views
1 vote
If you use a while loop to allow the user to make four guesses, which of these must appear in the while loop for it to work properly?

Group of answer choices

count != 1

count = 1

count = count + 1

print(“Try again!”)

User Tgmath
by
8.1k points

1 Answer

6 votes

Answer: count = count + 1

Explanation: it should increase the count

User Mazzy
by
8.2k points