Skip to content

Commit 117fa24

Browse files
authored
Update 09 - Python's Built-In Iterables and Iterators.ipynb
Fix minor typos.
1 parent dc66d90 commit 117fa24

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Part 2/Section 04 - Iterables and Iterators/09 - Python's Built-In Iterables and Iterators.ipynb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -252,7 +252,7 @@
252252
"cell_type": "markdown",
253253
"metadata": {},
254254
"source": [
255-
"Just like `range()` though, it also uses lazy evaluation, so we need to iterate through the iterator and make a list for example in order to see the contents:"
255+
"Just like `range()` though, it also uses lazy evaluation, so we need to iterate through the iterator and make a list in order to see the contents:"
256256
]
257257
},
258258
{
@@ -1571,7 +1571,7 @@
15711571
"source": [
15721572
"There are many other such functions and methods in Python, and we'll cover more of them in some upcoming videos\n",
15731573
"\n",
1574-
"Just be careful and know whether you are dealing with an iterable or an iterator. You can iterate and iterable over and over again, but can only do so once with an iterator."
1574+
"Just be careful and know whether you are dealing with an iterable or an iterator. You can iterate an iterable over and over again, but can only do so once with an iterator."
15751575
]
15761576
},
15771577
{

0 commit comments

Comments
 (0)