I have a DF as shown below
DF =
Index R
0 A
1 "B,C"
2 D
3 "E,F"
I want to remove all "" from the values:
DF_New =
Index R
0 A
1 B,C
2 D
3 E,F
Using join(literal_eval(x)) or other constructions don't work. What should I do?