Skip to content

How to stop the while loop from repeating in the output?

The while loop which asks the user for another number will NOT stop even though there is an false statement saying otherwise. In the output menu, the while loop keeps repeating. How do I make it move on to next section of my code. Answer You forgot to add an extra tab between the if/else statement. Python rel…