0
Multiple condition
Which operators have got greater than order? And, or, not. The second question: totally how do we use (not) in multiple conditions together? With a sample please.
2 Respostas
+ 6
The priority is:
not
and
or
if 0 or not 0 and 1:
print('Hi!')
the if statement is True (1)
+ 1
Thanks