Importing CSV to Py and loading it into a list of lists

PHOTO EMBED

Tue Jul 21 2020 19:28:03 GMT+0000 (Coordinated Universal Time)

Saved by @phi #python

from csv import reader
fp = open('file_name.csv', encoding='utf-8')
data = list(reader(fp))
fp.close()
content_copyCOPY

Py course with Tal Alon

http://localhost:8888/notebooks/Desktop/for Jupyter/HW check/Exercise 2b.ipynb