Skip to content

Commit e37b3bb

Browse files
committed
Update List.ipynb
1 parent fa06d2d commit e37b3bb

File tree

1 file changed

+21
-10
lines changed

1 file changed

+21
-10
lines changed

List.ipynb

Lines changed: 21 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,20 @@
99
},
1010
{
1111
"cell_type": "code",
12-
"execution_count": null,
12+
"execution_count": 1,
1313
"metadata": {},
14-
"outputs": [],
14+
"outputs": [
15+
{
16+
"data": {
17+
"text/plain": [
18+
"[1, 2, 3]"
19+
]
20+
},
21+
"execution_count": 1,
22+
"metadata": {},
23+
"output_type": "execute_result"
24+
}
25+
],
1526
"source": [
1627
"[1,2,3]"
1728
]
@@ -24,7 +35,7 @@
2435
{
2536
"data": {
2637
"text/plain": [
27-
"['hi', 1, [1, 2]]"
38+
"['hi', 1]"
2839
]
2940
},
3041
"execution_count": 2,
@@ -33,12 +44,12 @@
3344
}
3445
],
3546
"source": [
36-
"['hi',1,[1,2]]"
47+
"['hi',1]"
3748
]
3849
},
3950
{
4051
"cell_type": "code",
41-
"execution_count": 3,
52+
"execution_count": 4,
4253
"metadata": {},
4354
"outputs": [],
4455
"source": [
@@ -47,7 +58,7 @@
4758
},
4859
{
4960
"cell_type": "code",
50-
"execution_count": 4,
61+
"execution_count": 5,
5162
"metadata": {},
5263
"outputs": [],
5364
"source": [
@@ -96,22 +107,22 @@
96107
},
97108
{
98109
"cell_type": "code",
99-
"execution_count": 7,
110+
"execution_count": 6,
100111
"metadata": {},
101112
"outputs": [
102113
{
103114
"data": {
104115
"text/plain": [
105-
"'b'"
116+
"'a'"
106117
]
107118
},
108-
"execution_count": 7,
119+
"execution_count": 6,
109120
"metadata": {},
110121
"output_type": "execute_result"
111122
}
112123
],
113124
"source": [
114-
"my_list[1]"
125+
"my_list[0]"
115126
]
116127
},
117128
{

0 commit comments

Comments
 (0)