Skip to content

Commit 3559097

Browse files
proof reading: self study notes python fundamentals
1 parent 925d459 commit 3559097

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

individual_modules/introduction_to_python/fundamentals.ipynb

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,11 @@
1111
"\n",
1212
"At the end of this lesson you will be able to:\n",
1313
"\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",
1919
"\n",
2020
"## Key points\n",
2121
"\n",
@@ -94,7 +94,7 @@
9494
"\n",
9595
"This means that, for example:\n",
9696
" - `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",
9898
"\n",
9999
"## Types of data\n",
100100
"Python knows various types of data. Three common ones are:\n",
@@ -474,7 +474,7 @@
474474
"source": [
475475
"## Sorting Out References\n",
476476
"\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?"
478478
]
479479
},
480480
{

0 commit comments

Comments
 (0)