state_a = True state_b = False state_c = True if state_a: print('State a is True.') if state_b: print('State b is True.') if state_c: print('State c is True.') print('Always printed.')