10.Write a Pandas program to replace NaNs with a single constant value in specified columns in a DataFrame. code example
Example 1: how to replace nan with 0 in pandas
df['product']=df['product'].fillna(0)
df['context']=df['context'].fillna(0)
df
Example 2: how to replace nan values with 0 in pandas
df.fillna(0)