现有 str: {a: {b: '值 1', c: 0, d: '值 2', e: '1', f: [1,2,3]}
好像因为其中的 key 都没有引号,我用 eval() 和 ast.literal_eval() 都转换失败了
1
love 2019-08-15 12:21:40 +08:00 1
这不是 json 的变种吗,用 json5 之类的库可以解析
|
2
wuwukai007 2019-08-15 16:09:22 +08:00 1
pip install demjson
demjson.decode(xxx) |
3
lmingzhi08 2019-08-15 17:12:04 +08:00 1
# 或者使用正则
import re astr = '''{a: {b: '值 1', c: 0, d: '值 2', e: '1', f:[1,2,3]}}''' eval(re.sub(r'\s*(\w+)\s*:', r"'\1':", astr)) # {'a': {'b': '值 1', 'c': 0, 'd': '值 2', 'e': '1', 'f': [1, 2, 3]}} import demjson demjson.decode(astr) |
4
BryceBu OP |