8 lines
148 B
Python
8 lines
148 B
Python
a = True if b else False # SIM210
|
|
|
|
a = True if b != c else False # SIM210
|
|
|
|
a = True if b + c else False # SIM210
|
|
|
|
a = False if b else True # OK
|