x = 5 if x == 5: print("x is 5") print("This is part of the stuff we do if the condition is true") else: print("x isn't 5") print("This isn't")