Skip to content

Commit 8c0a26b

Browse files
authored
rough update to notebooks
1 parent 145ce6f commit 8c0a26b

File tree

1 file changed

+31
-57
lines changed

1 file changed

+31
-57
lines changed

notebooks/Lesson-2-Reading-Files/Reading-Files.ipynb

Lines changed: 31 additions & 57 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,12 @@
1616
},
1717
{
1818
"cell_type": "code",
19-
"execution_count": 1,
19+
"execution_count": null,
2020
"metadata": {
21-
"collapsed": false
21+
"collapsed": false,
22+
"jupyter": {
23+
"outputs_hidden": false
24+
}
2225
},
2326
"outputs": [],
2427
"source": [
@@ -41,22 +44,14 @@
4144
},
4245
{
4346
"cell_type": "code",
44-
"execution_count": 2,
47+
"execution_count": null,
4548
"metadata": {
46-
"collapsed": false
47-
},
48-
"outputs": [
49-
{
50-
"data": {
51-
"text/plain": [
52-
"'savedrecs'"
53-
]
54-
},
55-
"execution_count": 2,
56-
"metadata": {},
57-
"output_type": "execute_result"
49+
"collapsed": false,
50+
"jupyter": {
51+
"outputs_hidden": false
5852
}
59-
],
53+
},
54+
"outputs": [],
6055
"source": [
6156
"RC = mk.RecordCollection(\"savedrecs.txt\")\n",
6257
"repr(RC)"
@@ -71,22 +66,14 @@
7166
},
7267
{
7368
"cell_type": "code",
74-
"execution_count": 3,
69+
"execution_count": null,
7570
"metadata": {
76-
"collapsed": false
77-
},
78-
"outputs": [
79-
{
80-
"data": {
81-
"text/plain": [
82-
"'files-from-.'"
83-
]
84-
},
85-
"execution_count": 3,
86-
"metadata": {},
87-
"output_type": "execute_result"
71+
"collapsed": false,
72+
"jupyter": {
73+
"outputs_hidden": false
8874
}
89-
],
75+
},
76+
"outputs": [],
9077
"source": [
9178
"RC = mk.RecordCollection(\".\")\n",
9279
"repr(RC)"
@@ -101,22 +88,14 @@
10188
},
10289
{
10390
"cell_type": "code",
104-
"execution_count": 4,
91+
"execution_count": null,
10592
"metadata": {
106-
"collapsed": false
107-
},
108-
"outputs": [
109-
{
110-
"data": {
111-
"text/plain": [
112-
"'txt-files-from-.'"
113-
]
114-
},
115-
"execution_count": 4,
116-
"metadata": {},
117-
"output_type": "execute_result"
93+
"collapsed": false,
94+
"jupyter": {
95+
"outputs_hidden": false
11896
}
119-
],
97+
},
98+
"outputs": [],
12099
"source": [
121100
"RC = mk.RecordCollection(\".\", extension = \"txt\")\n",
122101
"repr(RC)"
@@ -131,19 +110,14 @@
131110
},
132111
{
133112
"cell_type": "code",
134-
"execution_count": 5,
113+
"execution_count": null,
135114
"metadata": {
136-
"collapsed": false
137-
},
138-
"outputs": [
139-
{
140-
"name": "stdout",
141-
"output_type": "stream",
142-
"text": [
143-
"RC is a Collection of 32 records\n"
144-
]
115+
"collapsed": false,
116+
"jupyter": {
117+
"outputs_hidden": false
145118
}
146-
],
119+
},
120+
"outputs": [],
147121
"source": [
148122
"print(\"RC is a \" + str(RC))"
149123
]
@@ -172,9 +146,9 @@
172146
"name": "python",
173147
"nbconvert_exporter": "python",
174148
"pygments_lexer": "ipython3",
175-
"version": "3.4.0"
149+
"version": "3.7.4"
176150
}
177151
},
178152
"nbformat": 4,
179-
"nbformat_minor": 0
153+
"nbformat_minor": 4
180154
}

0 commit comments

Comments
 (0)