Skip to content

Commit a05b4ae

Browse files
committed
Missing 'print'
1 parent 16e5113 commit a05b4ae

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

_episodes/03-lists.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -440,7 +440,7 @@ print("With known last position:", sond)
440440
sond = months[8:len(months)]
441441
print("Using len() to get last entry:", sond)
442442
sond = months[8:]
443-
("Omitting ending index:", sond)
443+
print("Omitting ending index:", sond)
444444
~~~
445445
{: .python}
446446

0 commit comments

Comments
 (0)