Skip to content

Commit eef0443

Browse files
committed
2 parents db2c4df + cce9716 commit eef0443

5 files changed

+5
-4
lines changed

Decorators.ipynb

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
"#Decorators\n",
88
"\n",
99
"\n",
10-
"Decorators can be thought of as functions which modify the *functionality* of another function. They help to make your code shorter and mote \"Pythonic\". \n",
10+
"Decorators can be thought of as functions which modify the *functionality* of another function. They help to make your code shorter and more \"Pythonic\". \n",
1111
"\n",
1212
"To properly explain decorators we will slowly build up from functions. Make sure to restart the Python and the Notebooks for this lecture to look the same on your own computer. So lets break down the steps:\n",
1313
"\n",

Lambda expressions .ipynb

+1-1
Original file line numberDiff line numberDiff line change
@@ -395,7 +395,7 @@
395395
"cell_type": "markdown",
396396
"metadata": {},
397397
"source": [
398-
"lambda expressions really shine when used in conjunction with map(),filter() and reduce(). Each of those functions has its own lecture, so feel free to explore them if your very itnerested in lambda."
398+
"lambda expressions really shine when used in conjunction with map(),filter() and reduce(). Each of those functions has its own lecture, so feel free to explore them if you're very interested in lambda."
399399
]
400400
},
401401
{

Lists.ipynb

+1-1
Original file line numberDiff line numberDiff line change
@@ -650,7 +650,7 @@
650650
"metadata": {},
651651
"source": [
652652
"## Nesting Lists\n",
653-
"A great feature of of Python data structures is that they support *nesting*. This means we can data structures within data structures. For example: A list inside a list.\n",
653+
"A great feature of of Python data structures is that they support *nesting*. This means we can have data structures within data structures. For example: A list inside a list.\n",
654654
"\n",
655655
"Let's see how this works!"
656656
]

Print Formatting.ipynb

+1
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
"metadata": {},
66
"source": [
77
"#Print Formatting\n",
8+
"\n",
89
"In this lecture we will briefly cover the various ways to format your print statements. As you code more and more, you will probably want to have print statements that can take in a variable into a printed string statement.\n",
910
"\n",
1011
"The most basic example of a print statement is:"

Strings.ipynb

+1-1
Original file line numberDiff line numberDiff line change
@@ -268,7 +268,7 @@
268268
"Something to note. In Python 3, print is a function, not a statement. So you would print statements like this:\n",
269269
"print('Hello World')\n",
270270
"\n",
271-
"If you want to use this functionalty in Python2, you can import form the __future__ module. \n",
271+
"If you want to use this functionality in Python2, you can import form the __future__ module. \n",
272272
"\n",
273273
"**A word of caution, after importing this you won't be able to choose the print statement method anymore. So pick whichever one you prefer depending on your Python installation and continue on with it.**"
274274
]

0 commit comments

Comments
 (0)