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
|
_and_(c_or_d).jpg) |
if (a == 1 and b == 2) or (c == 3 and d == 4): x = 1
else: x = 2
|
_or_(c_and_d).jpg) |
if not(a == 1) and b == 2: x = 1
else: x = 2
|
_and_b.jpg) |
if not(a == 1 and b == 2): x = 1
else: x = 2
|
.jpg) |
if not(a == 1 or b == 2): x = 1
else: x = 2
|
.jpg) |
if not((a == 1 or b == 2) and (c == 3 or d == 4)): x = 1
else: x = 2
|
_and_(c_or_d)).jpg) |
if not(a == 1 and b == 2) or c == 1: x = 1
else: x = 2
|
_or_c.jpg) |
if a == 1:
if b == 2 and c == 3:
x = 1
else: x = 2
else: x = 3
|
 |