pd replace 0 with nan 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: python pandas replace nan with null
df.fillna('', inplace=True)
df['product']=df['product'].fillna(0)
df['context']=df['context'].fillna(0)
df
df.fillna('', inplace=True)