Issue
I am new to python. I want to read the below csv file in Jupyter notebook. I am using windows. I am using the below command but nothing is happening.
import pandas as pd
z=pd.read_csv(r'C:/Users/saket/Downloads/Pokemon/Pokemon.csv')
Solution
Below lines should work , make sure that you have installed pandas using pip install pandas
.
import pandas as pd
data = pd.read_csv(r'C:/Users/saket/Downloads/Pokemon/Pokemon.csv')
data.head()
Answered By - Rabi
0 comments:
Post a Comment
Note: Only a member of this blog may post a comment.