Skip to content
Advertisement

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.

JavaScript

Advertisement

Answer

You forgot to add an extra tab between the if/else statement.

Python relies on the indentation (whitespace at the beginning of a line) to define the scope in the code. this might be confusing while other programming languages often use curly brackets for this purpose.

JavaScript
User contributions licensed under: CC BY-SA
7 People found this is helpful
Advertisement