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 ad457c7 commit 342b476Copy full SHA for 342b476
chapter-04-conditional_statements/conditional_statements/conditional_statements.pyde
@@ -1,8 +1,8 @@
1
# booleans
2
ball_is_red = True
3
-ball_is_spikey = False
+ball_is_spiky = False
4
print(ball_is_red) # displays: True
5
-print(ball_is_spikey) # displays: False
+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
0 commit comments