I am working on a project that requires multiple nested if statements where if any of the if statement conditions are broken i need to go to a single else condition. I will post an example of what I have done and I am hoping to either confirm that this methodology is correct or to critique what I have done or how I could improvement. You help is greatly appreciated!
if [Condition1] : # This condition MUST be met!
if [Condition2] :
if [Condition3] :
if [Condition4] :
# So far into the code I would process the data
# That has come through all the coniditons
else:
# Catching all data that breaks any if statements
# that are above ^^/>

New Topic/Question
Reply



MultiQuote





|