I always wanted to ask this question. I would like to know what form I should use, and why. What is better:
if my_condition:
# very long block of code with multiple indention levels
OR:
if not my_condition:
exit
# Still here ?
# very long block of code with multiple indention levels
EDIT:
I'm not asking for personal opinion. Is there any PEP recommendation/ any criterion I'm not aware of ?