gpt4 book ai didi

python - 如何从具有特定值的字典中提取随机键?

转载 作者:行者123 更新时间:2023-12-02 15:43:44 29 4
gpt4 key购买 nike

我有一本单词词典,每个单词都有一定的分值。我会在字典中搜索具有特定点值的随机词,即找到一个点值为 3 的随机词。我的字典结构如下:

wordList = {"to":1,"as":1,"be":1,"see":2,"bed":2,"owl":2,"era":2,"alive":3,"debt":3,"price":4,"stain":4} #shortened list obviously

在网上四处寻找,我找不到很好的答案,或者我找到了,但我不太明白。

最佳答案

我会使用 random.choice() 和列表理解:

from random import choice

choice([word for word, count in wordList.items() if count == 3])

关于python - 如何从具有特定值的字典中提取随机键?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/75086081/

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