Skip to content

Commit 5200244

Browse files
authored
Fix REPL chevron
1 parent 84ff16d commit 5200244

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

python/lesson2/tutorial.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@ around with decision making and changing prints based on your answer. In Python
148148
is using an `if` statement. For example:
149149

150150
>>> number = 4
151-
... if number > 3:
151+
>>> if number > 3:
152152
... print("Bigger than three")
153153
... elif number < 3:
154154
... print("Smaller than three")

0 commit comments

Comments
 (0)