我在 excel 中有以下列之一:
[0,[20,40,60],1,0]
我已经通过 xlrd 阅读它并将其作为字符串传递。
mycol=str(data[rownum][1]);
但是,我想用逗号分隔每个项目并解析为字典键值,例如
dict= {'Item1': '0', 'Item2': '[20,40,60]', 'Item3':'1', 'Item4': '0'}
我在 excel 中有以下列之一:
[0,[20,40,60],1,0]
我已经通过 xlrd 阅读它并将其作为字符串传递。
mycol=str(data[rownum][1]);
但是,我想用逗号分隔每个项目并解析为字典键值,例如
dict= {'Item1': '0', 'Item2': '[20,40,60]', 'Item3':'1', 'Item4': '0'}
步骤1:
>>> ast.literal_eval('[0,[20,40,60],1,0]')
[0, [20, 40, 60], 1, 0]
扩展 Ignacio Vazquez-Abrams 给出的答案
In [61]: import ast
In [62]: l = ast.literal_eval('[0,[20,40,60],1,0]')
In [63]: l
Out[63]: [0, [20, 40, 60], 1, 0]
In [64]: d = dict([("Item%s"%x, y) for x, y in enumerate(l, 1)])
In [65]: d
Out[65]: {'Item1': 0, 'Item2': [20, 40, 60], 'Item3': 1, 'Item4': 0}
如果您在键而不是 Item* 中有正确的值
In [77]: l2 = ['Apple ', 'Orange', 'Banana', 'Grape']
In [78]: d = dict(zip(l2, l))
In [79]: d
Out[79]: {'Apple ': 0, 'Banana': 1, 'Grape': 0, 'Orange': [20, 40, 60]}