Hi All,
I am trying to read an input_file.xlsx file using pandas.read_excel. I am using the below option
import pandas as pd
df = pd.read_excel(input_file, sheetname = sheetname, dtype = str, na_filter= False, keep_default_na = False
Not sure but the value #N/A is coming as null/NaN, whereas the values N/A, NA etc which are default na values are coming as string, which is expected. Do anyone knows a solution or workaround ?