Skip to content

Commit 7942b81

Browse files
authored
Update 5_Builtins.ipynb
the iteration line was probably a leftover from copy-paste of the previous example (w/o enumerable)
1 parent 4e4a0fb commit 7942b81

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

week4/5_Builtins.ipynb

+1-2
Original file line numberDiff line numberDiff line change
@@ -1622,8 +1622,7 @@
16221622
"outputs": [],
16231623
"source": [
16241624
"for line_number, line in enumerate(haiku_text):\n",
1625-
" print(f\"{line_number}:\\t{line.rstrip()}\")\n",
1626-
" line_number = line_number + 1"
1625+
" print(f\"{line_number}:\\t{line.rstrip()}\")\n"
16271626
]
16281627
},
16291628
{

0 commit comments

Comments
 (0)