Gruppering af betingelser i Python
Selvom operationen and har højere prioritet
end or, er det ofte mere praktisk at bruge
grupperende parenteser for eksplicit at
vise operationernes prioritet:
tst = 3
if (tst > 0 and tst < 5) or (tst > 10 and tst < 20):
print('+++')
else:
print('---')
I koden nedenfor, angiv operationernes prioritet i eksplicit form:
tst = 3
if tst > 5 and tst < 10 or tst == 20:
print('+++')
else:
print('---')
I koden nedenfor, angiv operationernes prioritet i eksplicit form:
tst = 3
if tst > 5 and tst > 0 and tst < 3:
print('+++')
else:
print('---')
I koden nedenfor, angiv operationernes prioritet i eksplicit form:
tst = 3
if tst == 9 and tst > 10 and tst < 20 or tst > 20 and tst < 30:
print('+++')
else:
print('---')