标签: python string list stringify
我有一个字符串化列表:
^
之后,a将是
“['one','two']”
有没有办法从这种字符串格式转回原始格式的列表?
由于
答案 0 :(得分:4)
使用eval:
a = eval("['one', 'two']")