Sometimes, we want to add else clause on Python while statement
In this article, we’ll look at how to add else clause on Python while statement.
How to add else clause on Python while statement?
To add else clause on Python while statement, we can add it below the while loop.
For instance, we write
while condition:
handle_true()
else:
handle_false()
to add a while loop that run while condition
is True
.
The else
block runs when condition
becomes False
.
Conclusion
To add else clause on Python while statement, we can add it below the while loop.