Last answered:

19 Apr 2022

Posted on:

28 Mar 2022

0

Jupyter can't find unzipped file

Hello,
     I have unzipped the file for the above lecture and Jupyter still can't find it. Here is a copy of my code:
df_used_cars = pd.read_csv("C:/Users/drewj/Downloads/bar_chart_data.zip")
     The path in parenthesis is the exact file location given to me when I unzipped the file. Any thoughts on what to do?

1 answers ( 0 marked as helpful)
Instructor
Posted on:

19 Apr 2022

1

Hi Philip,
thanks for reaching out! It seems that you've entered the wrong extension when reading the file. You ought to write
df_used_cars = pd.read_csv("C:/Users/drewj/Downloads/bar_chart_data.csv")
with .csv at the end, instead of .zip. 
Let me know if this works out!

Best, 
365 Eli

Submit an answer