a = False if b else True # SIM211 a = False if b != c else True # SIM211 a = False if b + c else True # SIM211 a = True if b else False # OK