Python Forum

Full Version: how to solve the 'NO SUCH DIRECTORY OR FILE' in pandas, python
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2
I tried this and it worked for me.... But you make sure your file is in correct path...

import pandas as pd
df = pd.read_csv(r'c:\Users\Admin\Downloads\weather.csv')
print("The size of the data frame is: ", df.shape)
Pages: 1 2