我从这样的列表开始
lists = [['test', '1', '-1', '0', '-1'],['test2', '0', '1', '0', '-1']
我想要结束的是{'test': [1, -1, 0, -1], 'test2': [0, 1, 0, -1]}
所以基本上,我需要从列表中创建一个字典。字典的值需要是整数而不是字符串。
这是我的非工作代码:
endResult = dict()
for x in lists:
for y in x:
endResult.update({x[0]:int(y)})