我有以下元组tup
,并希望将其转换为字典。
我发现似乎有效的代码。但是,当我尝试自己的for循环时,会出现错误。
有人可以向我解释为什么第一张中允许使用dict(y,x)
,而另一个却给出例外吗?
tup = ((2,'x'),(3,'a'))
#CORRECT CODE
print(dict((y, x) for x, y in tup)) #output: {'x':2, 'a':3}
#my own for loop, that throws the type error
for x, y in tup:
print(dict(y,x)) #output: TypeError dict expected at most
# 1 argument, got 2
这两个循环之间有什么区别?
答案 0 :(得分:2)
正确的代码等效于:
output = {}
tup = ((2,'x'),(3,'a'))
for x, y in tup:
output[y] = x
这也等同于:
tup = ((2,'x'),(3,'a'))
output = {y:x for (x,y) in tup}
它将元组中每个元素的键,值对添加到新字典中。
答案 1 :(得分:0)
(仅供参考)您可以使用的另一种方法
my_dict={}
for a, b in tup:
my_dict.setdefault(a,b)
在这里,我们使用了字典方法setdefault()将第一个参数转换为键,第二个参数转换为字典的值