What sorts of methods exist for prematurely exiting an if clause?
if
There are times when I\'m writing code and want to put a break statement
break
while some_condition: ... if condition_a: # do something break ... if condition_b: # do something break # more code here break