|
11 | 11 | "\n",
|
12 | 12 | "At the end of this lesson you will be able to:\n",
|
13 | 13 | "\n",
|
14 |
| - "- Identify and explain the basic data types used in Python\n", |
15 |
| - "- Create and use new variables in Python\n", |
16 |
| - "- Assign values to variables, and change these values later\n", |
17 |
| - "- Identify and use some built in features and functions of Python\n", |
18 |
| - "- Perform some simple operations on variables\n", |
| 14 | + "- Identify and explain the basic data types used in Python.\n", |
| 15 | + "- Create and use new variables in Python.\n", |
| 16 | + "- Assign values to variables, and change these values later.\n", |
| 17 | + "- Identify and use some built in features and functions of Python.\n", |
| 18 | + "- Perform some simple operations on variables.\n", |
19 | 19 | "\n",
|
20 | 20 | "## Key points\n",
|
21 | 21 | "\n",
|
|
94 | 94 | "\n",
|
95 | 95 | "This means that, for example:\n",
|
96 | 96 | " - `weight0` is a valid variable name, whereas `0weight` is not\n",
|
97 |
| - " - `weight` and `Weight` are different variables\n", |
| 97 | + " - `weight` and `Weight` are different variables.\n", |
98 | 98 | "\n",
|
99 | 99 | "## Types of data\n",
|
100 | 100 | "Python knows various types of data. Three common ones are:\n",
|
|
474 | 474 | "source": [
|
475 | 475 | "## Sorting Out References\n",
|
476 | 476 | "\n",
|
477 |
| - "Python allows you to assign multiple values to multiple variables in one line by separatingthe variables and values with commas. What does the following program print out?" |
| 477 | + "Python allows you to assign multiple values to multiple variables in one line by separating the variables and values with commas. What does the following program print out?" |
478 | 478 | ]
|
479 | 479 | },
|
480 | 480 | {
|
|
0 commit comments