gpt4 book ai didi

python - 单词出现的次数

转载 作者:太空宇宙 更新时间:2023-11-04 07:18:40 24 4
gpt4 key购买 nike

我必须创建一个接受两个列表的函数。第一个是像 ["tant", "", "you"] 这样的单词列表,第二个列表有 ["hi", "something", "both", "sporte "]。我想要一本字典,其中包含第一个列表中的单词在第二个列表中出现的次数。

我的代码给出了相反的结果,即给出了第二个列表中的单词在第一个列表中出现的次数。这是我的代码:

from collections import Counter    
timesmumber def (x, y):
number = x
dicitio = Counter (number)
return dict (dicitio)

最佳答案

假设你有一个列表

first_list = ['tant', '', 'you']

和第二个列表

second_list = ['hi', 'something', 'both', 'sporte', 'tant']   

您可以使用内置的count 方法创建字典

{nr : second_list.count(nr) for nr in first_list} 

关于python - 单词出现的次数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29522160/

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