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: 30-Jul-2019

440 Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements