I have a lot of strings, that were lists before writing to the csv. And now it looks like
s = "['SOAR', 'SIEM', 'SOAR']"
How can I convert it into list?
out = ['SOAR', 'SIEM', 'SOAR']
I have a lot of strings, that were lists before writing to the csv. And now it looks like
s = "['SOAR', 'SIEM', 'SOAR']"
How can I convert it into list?
out = ['SOAR', 'SIEM', 'SOAR']