我昨天搞砸了并保存了一个数据框到csv,在那个数据框中我有一个列是一个字符串列表。现在,当我从csv将其导入python时,字符串列表是一个字符串(字符串列表)。有没有办法在导入时将其更改回字符串列表?
示例:
testList = localGov["DataElements"][4]
testList
Out[62]: "['Ethnicity', 'Sex', 'Cause of Death', 'Count', 'Percent']"
我能够得到的最接近的是使用以下内容,但它在一些角色前面留下了一个空格。
testList.strip("[]").replace("'","").split(",")
Out[74]: ['Ethnicity', ' Sex', ' Cause of Death', ' Count', ' Percent']
答案 0 :(得分:8)
这就是ast.literal_eval
的用途:
>>> from ast import literal_eval
>>>
>>> literal_eval( "['Ethnicity', 'Sex', 'Cause of Death', 'Count', 'Percent']")
['Ethnicity', 'Sex', 'Cause of Death', 'Count', 'Percent']