Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
Pierian-Data committed May 13, 2016
2 parents db2c4df + cce9716 commit eef0443
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Decorators.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"#Decorators\n",
"\n",
"\n",
"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",
"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",
"\n",
"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",
"\n",
Expand Down
2 changes: 1 addition & 1 deletion Lambda expressions .ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -395,7 +395,7 @@
"cell_type": "markdown",
"metadata": {},
"source": [
"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."
"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."
]
},
{
Expand Down
2 changes: 1 addition & 1 deletion Lists.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -650,7 +650,7 @@
"metadata": {},
"source": [
"## Nesting Lists\n",
"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",
"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",
"\n",
"Let's see how this works!"
]
Expand Down
1 change: 1 addition & 0 deletions Print Formatting.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
"metadata": {},
"source": [
"#Print Formatting\n",
"\n",
"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",
"\n",
"The most basic example of a print statement is:"
Expand Down
2 changes: 1 addition & 1 deletion Strings.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -268,7 +268,7 @@
"Something to note. In Python 3, print is a function, not a statement. So you would print statements like this:\n",
"print('Hello World')\n",
"\n",
"If you want to use this functionalty in Python2, you can import form the __future__ module. \n",
"If you want to use this functionality in Python2, you can import form the __future__ module. \n",
"\n",
"**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.**"
]
Expand Down

0 comments on commit eef0443

Please sign in to comment.