|
6 | 6 | "source": [
|
7 | 7 | "#for Loops\n",
|
8 | 8 | "\n",
|
9 |
| - "A **for** loop acts as an iterator in Python, it goes through items that are in a *sequence* or any other iterable item. Objects that we've learned about that we can ietrate over include strings,lists,tuples, and even built in iterables for dictionaries, such as the keys or values.\n", |
| 9 | + "A **for** loop acts as an iterator in Python, it goes through items that are in a *sequence* or any other iterable item. Objects that we've learned about that we can iterate over include strings,lists,tuples, and even built in iterables for dictionaries, such as the keys or values.\n", |
10 | 10 | "\n",
|
11 | 11 | "We've already seen the **for** statement a little bit in past lectures but now lets formalize our understanding.\n",
|
12 | 12 | "\n",
|
|
21 | 21 | "cell_type": "markdown",
|
22 | 22 | "metadata": {},
|
23 | 23 | "source": [
|
24 |
| - "The variable name used for the item is completely up to the coder, so use your best judgement for choosing a name that makes sense and you will be able to understand when revisiting your code. This item name can then be referenced inside you loop, for example if you wanted to use if statements to perform checks.\n", |
| 24 | + "The variable name used for the item is completely up to the coder, so use your best judgment for choosing a name that makes sense and you will be able to understand when revisiting your code. This item name can then be referenced inside you loop, for example if you wanted to use if statements to perform checks.\n", |
25 | 25 | "\n",
|
26 |
| - "Let's go ahead and work through several example of **for** loops using a varieyt of data object types. we'll start simple and build more complexity later on.\n", |
| 26 | + "Let's go ahead and work through several example of **for** loops using a variety of data object types. we'll start simple and build more complexity later on.\n", |
27 | 27 | "\n",
|
28 | 28 | "##Example 1\n",
|
29 | 29 | "Iterating through a list."
|
|
181 | 181 | "cell_type": "markdown",
|
182 | 182 | "metadata": {},
|
183 | 183 | "source": [
|
184 |
| - "Notice that if a number is fuly divisble with no remainder, the result of the modulo call is 0. We can use this to test for even numbers, since if a number modulo 2 is equal to 0, that means it is an even number!\n", |
| 184 | + "Notice that if a number is fully divisible with no remainder, the result of the modulo call is 0. We can use this to test for even numbers, since if a number modulo 2 is equal to 0, that means it is an even number!\n", |
185 | 185 | "\n",
|
186 | 186 | "Back to the **for** loops!\n",
|
187 | 187 | "\n",
|
|
258 | 258 | "metadata": {},
|
259 | 259 | "source": [
|
260 | 260 | "## Example 3\n",
|
261 |
| - "Another common idea during a **for** loop is keeping some sort of running tally during the multiple loops. For exampl, lets create a for loop that sums up the list:" |
| 261 | + "Another common idea during a **for** loop is keeping some sort of running tally during the multiple loops. For example, lets create a for loop that sums up the list:" |
262 | 262 | ]
|
263 | 263 | },
|
264 | 264 | {
|
|
401 | 401 | "metadata": {},
|
402 | 402 | "source": [
|
403 | 403 | "## Example 6\n",
|
404 |
| - "Tuples have a special quality when it comes to **for** loops. If you are iterating through a seqeunce that contains tuples, the item can actually be the tuple itself, this is an example of *tuple unpacking*. During the **for** loop we will be unpacking the tuple inside of a sequence and we can access the individual items inside that tuple!" |
| 404 | + "Tuples have a special quality when it comes to **for** loops. If you are iterating through a sequence that contains tuples, the item can actually be the tuple itself, this is an example of *tuple unpacking*. During the **for** loop we will be unpacking the tuple inside of a sequence and we can access the individual items inside that tuple!" |
405 | 405 | ]
|
406 | 406 | },
|
407 | 407 | {
|
|
464 | 464 | "cell_type": "markdown",
|
465 | 465 | "metadata": {},
|
466 | 466 | "source": [
|
467 |
| - "Cool! With tuples in a sequence we can access the items inside of them through unpacking! The reason this is important is beacause many object will deliver their iterables through tuples. Let's start exploring iterating through Dictionaries to explore this further!" |
| 467 | + "Cool! With tuples in a sequence we can access the items inside of them through unpacking! The reason this is important is because many object will deliver their iterables through tuples. Let's start exploring iterating through Dictionaries to explore this further!" |
468 | 468 | ]
|
469 | 469 | },
|
470 | 470 | {
|
|
617 | 617 | "cell_type": "markdown",
|
618 | 618 | "metadata": {},
|
619 | 619 | "source": [
|
620 |
| - "You might be wondering why this worked in Python 2. This is because of the introduction of generators to Python during its earlier years. (We will go over generators and what they are in a future section, but the basic notion is that generators don't store data in memory, but instead just yeild it to you as it goes through an iterable item).\n", |
| 620 | + "You might be wondering why this worked in Python 2. This is because of the introduction of generators to Python during its earlier years. (We will go over generators and what they are in a future section, but the basic notion is that generators don't store data in memory, but instead just yield it to you as it goes through an iterable item).\n", |
621 | 621 | "\n",
|
622 | 622 | "Originally, Python items() built a real list of tuples and returned that. That could potentially take a lot of extra memory.\n",
|
623 | 623 | "\n",
|
|
0 commit comments