If Statements – More Advanced Forms
We’ve seen in a previous article about Python’s If Statement how we write our If statement to change the flow of our program, only running some code based upon if certain conditions are met. We’re going to continue that notion, but increase the complexity of our If Statement. Multiple Statements A common occurrence is we…