Skip to content

Commit 6255b5d

Browse files
committed
fixing more typos
1 parent 4c74ce4 commit 6255b5d

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

.ipynb_checkpoints/Lists-checkpoint.ipynb

+4-4
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@
44
"cell_type": "markdown",
55
"metadata": {},
66
"source": [
7-
"#Lists\n",
7+
"# Lists\n",
88
"\n",
9-
"Earlier when discussing strings we introduced the concept of a *sequence* in Python. Lists can be thought of the most general version of a *sequence* in Python. Unlike strings, the are mutable, meaning the elements inside a list can be changed!\n",
9+
"Earlier when discussing strings we introduced the concept of a *sequence* in Python. Lists can be thought of the most general version of a *sequence* in Python. Unlike strings, they are mutable, meaning the elements inside a list can be changed!\n",
1010
"\n",
1111
"In this section we will learn about:\n",
1212
" \n",
@@ -400,7 +400,7 @@
400400
"cell_type": "markdown",
401401
"metadata": {},
402402
"source": [
403-
"Use **pop** to \"pop off\" an item form the list. By default pop takes off the last index, but you can also specify whic index to pop off. Let's see an example:"
403+
"Use **pop** to \"pop off\" an item from the list. By default pop takes off the last index, but you can also specify which index to pop off. Let's see an example:"
404404
]
405405
},
406406
{
@@ -827,7 +827,7 @@
827827
"name": "python",
828828
"nbconvert_exporter": "python",
829829
"pygments_lexer": "ipython2",
830-
"version": "2.7.10"
830+
"version": "2.7.11"
831831
}
832832
},
833833
"nbformat": 4,

Lists.ipynb

+3-3
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"cell_type": "markdown",
55
"metadata": {},
66
"source": [
7-
"#Lists\n",
7+
"# Lists\n",
88
"\n",
99
"Earlier when discussing strings we introduced the concept of a *sequence* in Python. Lists can be thought of the most general version of a *sequence* in Python. Unlike strings, they are mutable, meaning the elements inside a list can be changed!\n",
1010
"\n",
@@ -400,7 +400,7 @@
400400
"cell_type": "markdown",
401401
"metadata": {},
402402
"source": [
403-
"Use **pop** to \"pop off\" an item form the list. By default pop takes off the last index, but you can also specify whic index to pop off. Let's see an example:"
403+
"Use **pop** to \"pop off\" an item from the list. By default pop takes off the last index, but you can also specify which index to pop off. Let's see an example:"
404404
]
405405
},
406406
{
@@ -827,7 +827,7 @@
827827
"name": "python",
828828
"nbconvert_exporter": "python",
829829
"pygments_lexer": "ipython2",
830-
"version": "2.7.10"
830+
"version": "2.7.11"
831831
}
832832
},
833833
"nbformat": 4,

0 commit comments

Comments
 (0)