I have the pandas dataframe df which contains the list column
0 1
foo [foo,bar]
bar [bar,foo]
What is an effective way to add double quotes to specific list element to make the output like this:
0 1
foo ["foo","bar"]
bar ["bar","foo"]
Kindly assume that there are more than 2 rows.