Skip to content

Commit 8c2436d

Browse files
committed
Update Python_walkthrough.ipynb
1 parent 4deaf48 commit 8c2436d

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

notebooks/Python_walkthrough.ipynb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1102,7 +1102,7 @@
11021102
"\n",
11031103
"## Lists\n",
11041104
"\n",
1105-
"Python **lists** are ordered sequences of values of any type where each value is identified by an index. The different elements need not be of the same type. A key concept is that elements in a **list are mutable** (i.e. their values or size can be modified after creation). A list is constructed using square brackets."
1105+
"Python **lists** are ordered sequences of values of any type where each value is identified by an index. The different elements need not be of the same type. A key concept is that elements in a **list are mutable** (i.e. their values or size can be modified after creation). A list is constructed using brackets."
11061106
]
11071107
},
11081108
{
@@ -1473,7 +1473,7 @@
14731473
"source": [
14741474
"## Dictionaries\n",
14751475
"\n",
1476-
"A _dictionary_ is a structured type used to store _key-value_ pairs. This is a very versatile structure as the values can be of any type supported by Python (e.g. integers, scalars, lists, numpy arrays, etc.). Dictionaries are constructed with curly brackets and key and values are separated by a colon as follows"
1476+
"A _dictionary_ is a structured type used to store _key-value_ pairs. This is a very versatile structure as the values can be of any type supported by Python (e.g. integers, scalars, lists, numpy arrays, etc.). Dictionaries are constructed with curly braces and key and values are separated by a colon as follows"
14771477
]
14781478
},
14791479
{

0 commit comments

Comments
 (0)