这个问题已经在这里有了答案: > Convert string representation of list to list 15个
我有一个清单:
a = ['one', 'two']
a = str(a)
之后,将是
“[‘one’, ‘two’]”
有没有办法从这种字符串格式返回到原始格式的列表?
谢谢
解决方法:
使用eval:
a = eval("['one', 'two']")