Adding csv files multiple times into Google colab

Viewed 12

I have uploaded two CSV files onto colab.I have extracted one file using code

import pandas as pd
df = pd.read_csv(" pasted file path here")
df 
the code worked!
now I wanted to open another CSV file.
df2 = pd.read_csv("pasted another file path here")
df2

now, I'm getting errors like below 'utf-8' codec can't decode byte 0xff in position 87247: invalid start byte

how to solve this

0 Answers
Related