-5

![I want to replace File_attribute and region _attribute column value with '{}']1

  • 1
    Hi, can you please post the data as text? and the requirement too? check how here: https://stackoverflow.com/questions/20109391/how-to-make-good-reproducible-pandas-examples- – anky Mar 08 '19 at 10:58

1 Answers1

1

Assuming the data is in a Pandas DataFrame object df,

df['File_attribute'] = '{}'
df['Region_attribute'] = '{}'
Supratim Haldar
  • 2,376
  • 3
  • 16
  • 26