attributeerror 3a 27nonetype 27 object has no attribute 27dropna 27

Solutions on MaxInterview for attributeerror 3a 27nonetype 27 object has no attribute 27dropna 27 by the best coders in the world

we are a community of more than 2 million smartest coders
registration for
employee referral programs
are now open
get referred to google, amazon, flipkart and more
register now
  
pinned-register now
showing results for - "attributeerror 3a 27nonetype 27 object has no attribute 27dropna 27"
Kellie
18 Oct 2020
1import pandas as pd
2file = pd.read_csv("/my/path/to/spreadsheet.csv", index_col=0)
3file.dropna(how="any", inplace=True)
4file = file.fillna("", inplace=False)
5print(file)