Reading a dataset for data science using Python in Anaconda - Jupyter

#import the library Pandas
import pandas as pd

#Put the mtcars.csv dataset on Root Directory of Jupyter

#Read the dataset 
data = pd.read_csv('mtcars.csv')
data



Output:-