Skip to content

Commit c947fa9

Browse files
proof reading: self study notes python dictionaries
1 parent 25d653b commit c947fa9

File tree

2 files changed

+11
-11
lines changed

2 files changed

+11
-11
lines changed

individual_modules/introduction_to_python/dictionaries.ipynb

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -11,17 +11,17 @@
1111
"\n",
1212
"At the end of this lesson you will be able to:\n",
1313
"\n",
14-
"- Identify and explain what a dictionary is\n",
15-
"- Explain what makes a dictionary different to a list\n",
16-
"- Understand the `key`: `value` relationship\n",
17-
"- Create a dictionary containing simple values\n",
18-
"- Update values in a dictionary\n",
14+
"- Identify and explain what a dictionary is.\n",
15+
"- Explain what makes a dictionary different to a list.\n",
16+
"- Understand the `key`: `value` relationship.\n",
17+
"- Create a dictionary containing simple values.\n",
18+
"- Update values in a dictionary.\n",
1919
"\n",
2020
"## Key points\n",
2121
"\n",
22-
"- A dictionary stores key-value pairs.\n",
23-
"- Dictionaries are unordered.\n",
24-
"- Dictionaries are immutable.\n",
22+
"- \"A dictionary stores key-value pairs.\"\n",
23+
"- \"Dictionaries are unordered.\"\n",
24+
"- \"Dictionaries are immutable.\"\n",
2525
"\n",
2626
"## Introduction\n",
2727
"\n",
@@ -128,7 +128,7 @@
128128
"id": "a568cacd-8862-45bb-924b-eaf354642c6e",
129129
"metadata": {},
130130
"source": [
131-
"Oops, we made a mistake there. Turing was actually born in 1912. We can update a value using a key. Turing's birthdate above is actual incorrect. Values may be overwritten by re-assignment:\n"
131+
"Oops, we made a mistake there. Turing was actually born in 1912. We can update a value using a key. Turing's birthdate above is actually incorrect. Values may be overwritten by re-assignment:\n"
132132
]
133133
},
134134
{

individual_modules/introduction_to_python/questions/summary_dictionaries.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
"feedback": "Incorrect"
2020
},
2121
{
22-
"answer": "It is always ordered",
22+
"answer": "It is always ordered.",
2323
"correct": false,
2424
"feedback": "Incorrect"
2525
}
@@ -66,7 +66,7 @@
6666
"feedback": "Correct"
6767
},
6868
{
69-
"answer": "Dictionary values are immutable",
69+
"answer": "Dictionary values are immutable.",
7070
"correct": false,
7171
"feedback": "Incorrect"
7272
},

0 commit comments

Comments
 (0)