PYTHON CODING
- waclaw_koscielniak

- Jul 10
- 1 min read
a = True
b = False
c = False
if a or b and c:
print("Correct")
else:
print("Incorrect")
[Running] python3 -u "/Users/name/test/test63.py"
Correct
[Done] exited with code=0 in 0.051 seconds

ToucanSway
Did you get it right?