Computer >> Computer tutorials >  >> Programming >> Python

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()