Trying to fill all empty spots rows and columns with [], however fillna() will only do some rows and the first column. My code has worked in previous runs so I'm not sure what happened.
df = df.fillna(value = "[]")
print(df[['keywords']])
df.to_csv(r'C:\Users\user\dfexport.csv', index=False, header=True)
When looking at the csv file it looks like:export.csv
The print statement looks like:print(df[['keywords]])