You used this code to give the user hints.

else:
if guess print("Guess higher.")

else:
print("Guess lower.")

Complete the code below, which is an alternative way to give the user the same hints.

if guess = correct:
# Tell the user the guess was correct.
print("You were correct!")
keepGoing = False

_________
print("Guess higher.")

_________
print("Guess lower.")

•Else
•Elif guess > correct
•Elif guess < correct

You used this code to give the user hints else if guess printGuess higher else printGuess lower Complete the code below which is an alternative way to give the class=