Skip to content

Commit 5ce5db2

Browse files
committed
- fix whitespace
1 parent e521a3e commit 5ce5db2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

chapter-04-conditional_statements/conditional_statements/conditional_statements.pyde

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ ball_is_spiky = False
44
print(ball_is_red) # displays: True
55
print(ball_is_spiky) # displays: False
66
print(ball_is_red + True) # displays: 2
7-
print(bool(1)) # displays: True
8-
print(bool(0)) # displays: False
7+
print(bool(1)) # displays: True
8+
print(bool(0)) # displays: False
99

1010
# relational operators
1111
x = 2

0 commit comments

Comments
 (0)