将元组对转换为字典

时间:2016-05-06 13:54:15

标签: python dictionary tuples

我有一个元组列表:

[('thorough', True), ('bliss', True), ('earnest', True)]

如何将它们转换为字典?

所需输出

({'thorough':True, 'bliss': True, 'earnest':True})

我试过使用dict()但它无法输出正确的答案。

1 个答案:

答案 0 :(得分:3)

dict([('thorough', True), ('bliss', True), ('earnest', True)])