标签: python python-3.x
我有一个字符串
s = '[ 1 , 2 , 3]'
如何从s创建列表?
答案 0 :(得分:2)
您可以使用json模块:
json
import json s = '[1, 2, 3]' json_as_list = json.loads(s)