Skip to content

Commit e77a301

Browse files
committed
file system update + adding in license that was missing.
1 parent 246aa32 commit e77a301

64 files changed

Lines changed: 85 additions & 60 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.
File renamed without changes.
File renamed without changes.

01_slides/09_reading_and_writing_files.ipynb renamed to 01_materials/slides/09_reading_and_writing_files.ipynb

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@
4848
"metadata": {},
4949
"outputs": [],
5050
"source": [
51-
"with open('../05_data/slides_data/california_housing_test.csv', 'r') as f:\n",
51+
"with open('../05_src/data/slides_data/california_housing_test.csv', 'r') as f:\n",
5252
" print(f)"
5353
]
5454
},
@@ -71,7 +71,7 @@
7171
"metadata": {},
7272
"outputs": [],
7373
"source": [
74-
"with open('../05_data/slides_data/california_housing_test.csv', 'r') as f:\n",
74+
"with open('../05_src/data/slides_data/california_housing_test.csv', 'r') as f:\n",
7575
" for i in range(5):\n",
7676
" print(f.readline())"
7777
]
@@ -126,7 +126,7 @@
126126
"source": [
127127
"import csv\n",
128128
"\n",
129-
"with open('../05_data/slides_data/california_housing_test.csv', 'r') as f:\n",
129+
"with open('../05_src/data/slides_data/california_housing_test.csv', 'r') as f:\n",
130130
" contents = csv.reader(f)\n",
131131
" for row in contents:\n",
132132
" print(row)"
File renamed without changes.

0 commit comments

Comments
 (0)