gpt4 book ai didi

python - 如何在 Python 字典中打印给定值的键?

转载 作者:太空狗 更新时间:2023-10-30 00:26:39 25 4
gpt4 key购买 nike

例如假设我们有以下字典:

dictionary = {'A':4,
'B':6,
'C':-2,
'D':-8}

如何打印给定键的值?

print(dictionary.get('A')) #This will print 4

你怎么能倒过来呢?即不是通过引用键获取值,而是通过引用值获取键。

最佳答案

我不相信有办法做到这一点。这不是字典的用途……相反,您必须执行与此类似的操作。

for key, value in dictionary.items():
if 4 == value:
print key

关于python - 如何在 Python 字典中打印给定值的键?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15784590/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com