About Anaconda installation

I was installing Anaconda on my local machine. After installation, I was trying to read excel file unfortunately failed since I was getting some error. For your reference screenshot is attached. Even though I tried to install panda through command prompt as well .

import pandas as pd

pd.read_excel(“mtcars.xlsx”)

Do let me know as early as possible.

Hi,

The error is that your code is not able able to find the .xlsx file. Please specify the full path of your .xlsx file or please make sure that .xlsx file is in the same directory as of your jupyter notebook.

Okay I’ll try it out once. Thanks a lot Sir.