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

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)