如何转换元组:
t=(('1','a'), ('1','A'), ('2','b'), ('2','B'), ('3','c'),('3', 'C'))
进入字典:
{'1':('a','A'),'2':('b','B'),'3':('c','C')}
我在控制台中尝试过:
>>> d={}
>>> t[0]
(1, 'a')
>>> d[t[0][0]]=t[0][1]
>>> d
{1: 'a'}
>>> t[0][0] in d
True
>>> d[t[1][0]]=t[1][1]
>>> d
{1: 'A'}
>>> d[t[0][0]]=t[0][1]
>>> d[t[1][0]]=d[t[1][0]],t[1][1]
>>> d
{1: ('a', 'A')}
现在以下脚本无法完成这项工作:
t=(('1','a'), ('1','A'), ('2','b'), ('2','B'), ('3','c'),('3', 'C'))
print "{'1':('a','A'),'2':('b','B'),'3':('c','C')} wanted, not:",dict(t)
d={}
for c, ob in enumerate(t):
print c,ob[0], ob[1]
if ob[0] in d:
print 'test'
d[ob[0]]=d[ob[0]],ob[1]
print d
else:
print 'else', d, ob[0],ob[1]
d[ob[0]]=d[ob[1]] # Errror is here
print d
print d
我有错误:
Traceback (most recent call last):
File "/home/simon/ProjetPython/python general/tuple_vers_dic_pbkey.py", line 20, in <module>
d[ob[0]]=d[ob[1]]
KeyError: 'a'
它似乎与 $>>> d[t[0][0]]=t[0][1]$ 不同。谢谢你的帮助
J.P
PS有没有更好的方法来进行转换?