I got an issue, hopefully someone has a great solution.
I am reading an Excel file. And I use keep_default_na=False because there is a productname called "NA" and I dont want pandas changing it to NaN.
df = pd.read_excel('Import_orders.xlsx', keep_default_na=False)
But the problem is when i run below code, it does nothing. Because there are no NaN values to fill. Because i used "keep_default_na=False". Is there a way to fill the empty fields. Thanks in advance!
df['Action for Contact'] = df['Action for Contact'].fillna('Update')