DrZhang To run code when either one of the conditions is True, we use the or operator. With or, code gets skipped only if all conditions are False. >>> aa = True >>> bb = False >>> if a or b: ... print("T") ... T