I have a dataframe like this:
number    file
  1       "[file1,file2]"
  2       [file1]
  3       "[file3,file4]
I want to delete the ". This is what I've tried:
 data = df.replace([\"], '', regex=True)
But, nothing changes in my dataframe. How do I solve this problem?
Thank you.
 
     
    
