Code | Control flow |
if a == 1 and b == 2: x = 1
else: x = 2
|
|
if a == 1 or b == 2: x = 1
else: x = 2
|
|
if (a == 1 or b == 2) and (c == 3 or d == 4): x = 1
else: x = 2
|
|
if (a == 1 and b == 2) or (c == 3 and d == 4): x = 1
else: x = 2
|
|
if not(a == 1) and b == 2: x = 1
else: x = 2
|
|
if not(a == 1 and b == 2): x = 1
else: x = 2
|
|
if not(a == 1 or b == 2): x = 1
else: x = 2
|
|
if not((a == 1 or b == 2) and (c == 3 or d == 4)): x = 1
else: x = 2
|
|
if not(a == 1 and b == 2) or c == 1: x = 1
else: x = 2
|
|
if a == 1:
if b == 2 and c == 3:
x = 1
else: x = 2
else: x = 3
|
|