python-3.x 如何创建键是元组[closed]的字典

zxlwwiss  于 2023-01-18  发布在  Python
关注(0)|答案(2)|浏览(143)

已关闭。此问题需要details or clarity。当前不接受答案。
**想要改进此问题?**添加详细信息并通过editing this post阐明问题。

3天前关闭。
Improve this question
如何创建键是元组的字典?
dict={} dict.update({value:{}})

hfyxw5xn

hfyxw5xn1#

就像你要其他钥匙一样

tup1 = ('a', 'b', 'c', 'd', 'e')
tup2 = (1, 2, 3, 4, 5)
tup3 = ('A', 'B', 'C', 'D', 'E')

dict = {}
dict[tup1] = 'lowercase'
dict[tup2] = 'numbers'
dict[tup3] = 'uppercase'
print(dict)

{('a', 'b', 'c', 'd', 'e'): 'lowercase', (1, 2, 3, 4, 5): 'numbers', ('A', 'B', 'C', 'D', 'E'): 'uppercase'}
zour9fqk

zour9fqk2#

根据您尝试的变量,您只需定义一个键和值,并对字典使用'update'。

dict = {}
key = (1, 2)
value = "hi"
dict.update({key: value})
print(dict)

相关问题