How to exit from a Python if clause?



It is not possible to exit from an if block of Python code. The break keyword does appear in if block but it has to inside a loop. It is however possible to exit from entire program from inside if block by sys.exit()

Updated on: 2019-07-30T22:30:21+05:30

538 Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements