We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e521a3e commit 5ce5db2Copy full SHA for 5ce5db2
chapter-04-conditional_statements/conditional_statements/conditional_statements.pyde
@@ -4,8 +4,8 @@ ball_is_spiky = False
4
print(ball_is_red) # displays: True
5
print(ball_is_spiky) # displays: False
6
print(ball_is_red + True) # displays: 2
7
-print(bool(1)) # displays: True
8
-print(bool(0)) # displays: False
+print(bool(1)) # displays: True
+print(bool(0)) # displays: False
9
10
# relational operators
11
x = 2
0 commit comments