Skip to content

Commit 6eef194

Browse files
Fixed typos in the project files
1 parent 7721e5e commit 6eef194

File tree

56 files changed

+138
-138
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

56 files changed

+138
-138
lines changed
File renamed without changes.

Advanced Lists.ipynb

+1-1
Original file line numberDiff line numberDiff line change
@@ -357,7 +357,7 @@
357357
"metadata": {},
358358
"source": [
359359
"##remove\n",
360-
"The remove() method removes the first occurence of a value. For example:"
360+
"The remove() method removes the first occurrence of a value. For example:"
361361
]
362362
},
363363
{

Advanced Numbers.ipynb

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
},
88
"source": [
99
"#Advanced Numbers\n",
10-
"In this lecture we will learn about a few more reperesentations of numbers in Python."
10+
"In this lecture we will learn about a few more representations of numbers in Python."
1111
]
1212
},
1313
{
File renamed without changes.

Advanced Sets.ipynb

+1-1
Original file line numberDiff line numberDiff line change
@@ -825,7 +825,7 @@
825825
"cell_type": "markdown",
826826
"metadata": {},
827827
"source": [
828-
"Great! You should now have a compelte awareness of all the methods available to you for a set object type. This data strucutre is extremely useful and is underutilized by beginners, so try to keep it in mind!\n",
828+
"Great! You should now have a complete awareness of all the methods available to you for a set object type. This data structure is extremely useful and is underutilized by beginners, so try to keep it in mind!\n",
829829
"\n",
830830
"Good Job!"
831831
]

Advanced Strings.ipynb

+3-3
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
},
88
"source": [
99
"#Advanced Strings\n",
10-
"String objects have a vareity of methods we can use to save time and add functionality. Lets explore some of them in this lecture:"
10+
"String objects have a variety of methods we can use to save time and add functionality. Lets explore some of them in this lecture:"
1111
]
1212
},
1313
{
@@ -346,7 +346,7 @@
346346
"cell_type": "markdown",
347347
"metadata": {},
348348
"source": [
349-
"istitle() will return True if S is a titlecased string and there is at least one character in S, i.e. uppercase characters may only follow uncased characters and lowercase characters only cased ones. Return False otherwise."
349+
"istitle() will return True if S is a title cased string and there is at least one character in S, i.e. uppercase characters may only follow uncased characters and lowercase characters only cased ones. Return False otherwise."
350350
]
351351
},
352352
{
@@ -437,7 +437,7 @@
437437
"## Built-in Reg. Expressions\n",
438438
"Strings have some built-in methods that can resemble regular expression operations.\n",
439439
"We can use split() to split the string at a certain element and return a list of the result.\n",
440-
"We can use partition to return a tuple that includes the seperator (the first occurence) and the first half and the end half."
440+
"We can use partition to return a tuple that includes the separator (the first occurrence) and the first half and the end half."
441441
]
442442
},
443443
{

All() and any() .ipynb All() and any().ipynb

+2-2
Original file line numberDiff line numberDiff line change
@@ -11,15 +11,15 @@
1111
"cell_type": "markdown",
1212
"metadata": {},
1313
"source": [
14-
"all() and any() are built-in functions in Python that allow us to convienently check for boolean matching in an iterable. all() will return True if all elements in an iterable are True. It is the same as this function code:\n",
14+
"all() and any() are built-in functions in Python that allow us to conveniently check for boolean matching in an iterable. all() will return True if all elements in an iterable are True. It is the same as this function code:\n",
1515
"\n",
1616
" def all(iterable):\n",
1717
" for element in iterable:\n",
1818
" if not element:\n",
1919
" return False\n",
2020
" return True\n",
2121
" \n",
22-
"any() will return True if any of the elements in the iterable are True. It is equivalent to the following funciton code:\n",
22+
"any() will return True if any of the elements in the iterable are True. It is equivalent to the following function code:\n",
2323
"\n",
2424
" def any(iterable):\n",
2525
" for element in iterable:\n",

Chained Comparison Operators.ipynb

+1-1
Original file line numberDiff line numberDiff line change
@@ -155,7 +155,7 @@
155155
"cell_type": "markdown",
156156
"metadata": {},
157157
"source": [
158-
"Note how it was true, this is beacuse with the **or** operator, we only need one *or* the other two be true. Let's see one more example to drive this home:"
158+
"Note how it was true, this is because with the **or** operator, we only need one *or* the other two be true. Let's see one more example to drive this home:"
159159
]
160160
},
161161
{

Collections Module.ipynb

+3-3
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,13 @@
66
"source": [
77
"#Collections Module\n",
88
"\n",
9-
"The collections module is a built-in module that implements specialized container datatypes providing alternatives to Python’s general purpose built-in containers. We've already gone over the basics: dict, list, set, and tuple.\n",
9+
"The collections module is a built-in module that implements specialized container data types providing alternatives to Python’s general purpose built-in containers. We've already gone over the basics: dict, list, set, and tuple.\n",
1010
"\n",
1111
"Now we'll learn about the alternatives that the collections module provides.\n",
1212
"\n",
1313
"##Counter\n",
1414
"\n",
15-
"*Counter* is a *dict* subclass which helps count hashable objects. Inside of it elements are stored as dictionary keys and the counts of the objects are stored as the value.\n",
15+
"*Counter* is a *dict* subclass which helps count hash-able objects. Inside of it elements are stored as dictionary keys and the counts of the objects are stored as the value.\n",
1616
"\n",
1717
"Lets see how it can be used:"
1818
]
@@ -286,7 +286,7 @@
286286
"cell_type": "markdown",
287287
"metadata": {},
288288
"source": [
289-
"Can also initilaize with default values:"
289+
"Can also initialize with default values:"
290290
]
291291
},
292292
{

Complex.ipynb

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
"\n",
1111
"If the first parameter is a string, it will be interpreted as a complex number and the function must be called without a second parameter. The second parameter can never be a string. Each argument may be any numeric type (including complex). If imag is omitted, it defaults to zero and the constructor serves as a numeric conversion like int and float. If both arguments are omitted, returns 0j.\n",
1212
"\n",
13-
"If you are doing math or engineering that requires complex numbers (such as dynamics,control systems, or impedence of a circuit) this is a useful tool to have in Python.\n",
13+
"If you are doing math or engineering that requires complex numbers (such as dynamics,control systems, or impedance of a circuit) this is a useful tool to have in Python.\n",
1414
"\n",
1515
"Lets see some examples:"
1616
]

Datetime.ipynb

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
"Python has the datetime module to help deal with timestamps in your code. Time values are represented with the time class. Times have attributes for hour, minute, second, and microsecond. They can also include time zone information. The arguments to initialize a time instance are optional, but the default of 0 is unlikely to be what you want.\n",
1010
"\n",
1111
"##time\n",
12-
"Lets take a look at how we can extract time information from the datetime module. We can create a timestamp by specifying datetime.time(hour,minute,second,microsecond)"
12+
"Lets take a look at how we can extract time information from the datetime module. We can create a time-stamp by specifying datetime.time(hour,minute,second,microsecond)"
1313
]
1414
},
1515
{

Decorators.ipynb

+1-1
Original file line numberDiff line numberDiff line change
@@ -667,7 +667,7 @@
667667
"cell_type": "markdown",
668668
"metadata": {},
669669
"source": [
670-
"So what just happened here? A decorator simple wrapped the function and modified its behaviour. Now lets understand how we can rewrite this code using the @ symbol, which is what Python uses for Decorators:"
670+
"So what just happened here? A decorator simple wrapped the function and modified its behavior. Now lets understand how we can rewrite this code using the @ symbol, which is what Python uses for Decorators:"
671671
]
672672
},
673673
{

Enumerate .ipynb Enumerate.ipynb

File renamed without changes.

Errors and Exceptions Handling.ipynb

+10-10
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
"source": [
77
"#Errors and Exception Handling\n",
88
"\n",
9-
"In this lecture we will learn about Errors and Exception Handling in Python. You've definitely already encountered erros by this point in the course. For example:"
9+
"In this lecture we will learn about Errors and Exception Handling in Python. You've definitely already encountered errors by this point in the course. For example:"
1010
]
1111
},
1212
{
@@ -73,7 +73,7 @@
7373
"name": "stdout",
7474
"output_type": "stream",
7575
"text": [
76-
"Content written succesfully\n"
76+
"Content written successfully\n"
7777
]
7878
}
7979
],
@@ -82,10 +82,10 @@
8282
" f = open('testfile','w')\n",
8383
" f.write('Test write this')\n",
8484
"except IOError:\n",
85-
" # This will only check for an IOError exception and then excute this print statement\n",
85+
" # This will only check for an IOError exception and then execute this print statement\n",
8686
" print \"Error: Could not find file or read data\"\n",
8787
"else:\n",
88-
" print \"Content written succesfully\"\n",
88+
" print \"Content written successfully\"\n",
8989
" f.close()"
9090
]
9191
},
@@ -116,10 +116,10 @@
116116
" f = open('testfile','r')\n",
117117
" f.write('Test write this')\n",
118118
"except IOError:\n",
119-
" # This will only check for an IOError exception and then excute this print statement\n",
119+
" # This will only check for an IOError exception and then execute this print statement\n",
120120
" print \"Error: Could not find file or read data\"\n",
121121
"else:\n",
122-
" print \"Content written succesfully\"\n",
122+
" print \"Content written successfully\"\n",
123123
" f.close()"
124124
]
125125
},
@@ -152,18 +152,18 @@
152152
" f = open('testfile','r')\n",
153153
" f.write('Test write this')\n",
154154
"except:\n",
155-
" # This will check for any exception and then excute this print statement\n",
155+
" # This will check for any exception and then execute this print statement\n",
156156
" print \"Error: Could not find file or read data\"\n",
157157
"else:\n",
158-
" print \"Content written succesfully\"\n",
158+
" print \"Content written successfully\"\n",
159159
" f.close()"
160160
]
161161
},
162162
{
163163
"cell_type": "markdown",
164164
"metadata": {},
165165
"source": [
166-
"Great! Now we don't actually need to memorize that list of exception types! Now what if we kept wanting to run code after the exception occured? This is where **finally** comes in.\n",
166+
"Great! Now we don't actually need to memorize that list of exception types! Now what if we kept wanting to run code after the exception occurred? This is where **finally** comes in.\n",
167167
"##finally\n",
168168
"The finally: block of code will always be run regardless if there was an exception in the try code block. The syntax is:\n",
169169
"\n",
@@ -404,7 +404,7 @@
404404
"cell_type": "markdown",
405405
"metadata": {},
406406
"source": [
407-
"**Great! Now you know how to handle erros and exceptions in Python with the try, except, else, and finally notation!**"
407+
"**Great! Now you know how to handle errors and exceptions in Python with the try, except, else, and finally notation!**"
408408
]
409409
}
410410
],

Errors and Exceptions Homework - Solution.ipynb

+4-4
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
"name": "stdout",
2727
"output_type": "stream",
2828
"text": [
29-
"An error ocurred!\n"
29+
"An error occurred!\n"
3030
]
3131
}
3232
],
@@ -35,7 +35,7 @@
3535
" for i in ['a','b','c']:\n",
3636
" print i**2\n",
3737
"except:\n",
38-
" print \"An error ocurred!\""
38+
" print \"An error occurred!\""
3939
]
4040
},
4141
{
@@ -95,7 +95,7 @@
9595
" try:\n",
9696
" n = input('Input an integer: ')\n",
9797
" except:\n",
98-
" print 'An error occured! Please try again!'\n",
98+
" print 'An error occurred! Please try again!'\n",
9999
" continue\n",
100100
" else:\n",
101101
" break\n",
@@ -116,7 +116,7 @@
116116
"output_type": "stream",
117117
"text": [
118118
"Input an integer: null\n",
119-
"An error occured! Please try again!\n",
119+
"An error occurred! Please try again!\n",
120120
"Input an integer: 2\n",
121121
"Thank you, you number squared is: 4\n"
122122
]

Errors and Exceptions Homework .ipynb Errors and Exceptions Homework.ipynb

+1-1
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@
105105
"output_type": "stream",
106106
"text": [
107107
"Input an integer: null\n",
108-
"An error occured! Please try again!\n",
108+
"An error occurred! Please try again!\n",
109109
"Input an integer: 2\n",
110110
"Thank you, you number squared is: 4\n"
111111
]

Files.ipynb

+1-1
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,7 @@
146146
"cell_type": "markdown",
147147
"metadata": {},
148148
"source": [
149-
"In order to not have to reset every time, we can also use the readlines method. Use this with caution ofr large files, since everything will be held in memory. We will learn how to iterate over large files later in the course."
149+
"In order to not have to reset every time, we can also use the readlines method. Use caution with large files, since everything will be held in memory. We will learn how to iterate over large files later in the course."
150150
]
151151
},
152152
{

Filter .ipynb Filter.ipynb

+1-1
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@
9191
"cell_type": "markdown",
9292
"metadata": {},
9393
"source": [
94-
"Great! You hsould now have a solid understanding of filter() and how to apply it to your code!"
94+
"Great! You should now have a solid understanding of filter() and how to apply it to your code!"
9595
]
9696
}
9797
],

For Loops .ipynb For Loops.ipynb

+8-8
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
"source": [
77
"#for Loops\n",
88
"\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",
1010
"\n",
1111
"We've already seen the **for** statement a little bit in past lectures but now lets formalize our understanding.\n",
1212
"\n",
@@ -21,9 +21,9 @@
2121
"cell_type": "markdown",
2222
"metadata": {},
2323
"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",
2525
"\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",
2727
"\n",
2828
"##Example 1\n",
2929
"Iterating through a list."
@@ -181,7 +181,7 @@
181181
"cell_type": "markdown",
182182
"metadata": {},
183183
"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",
185185
"\n",
186186
"Back to the **for** loops!\n",
187187
"\n",
@@ -258,7 +258,7 @@
258258
"metadata": {},
259259
"source": [
260260
"## 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:"
262262
]
263263
},
264264
{
@@ -401,7 +401,7 @@
401401
"metadata": {},
402402
"source": [
403403
"## 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!"
405405
]
406406
},
407407
{
@@ -464,7 +464,7 @@
464464
"cell_type": "markdown",
465465
"metadata": {},
466466
"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!"
468468
]
469469
},
470470
{
@@ -617,7 +617,7 @@
617617
"cell_type": "markdown",
618618
"metadata": {},
619619
"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",
621621
"\n",
622622
"Originally, Python items() built a real list of tuples and returned that. That could potentially take a lot of extra memory.\n",
623623
"\n",

0 commit comments

Comments
 (0)