You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
9 lines
347 B
9 lines
347 B
2 months ago
|
def count_danmaku(danmaku_list):
|
||
|
ai_keywords = ['AI', 'ai', 'AI分析', 'AI识别', 'AI优化','人工智能']
|
||
|
count_dict = {keyword: 0 for keyword in ai_keywords}
|
||
|
for danmaku in danmaku_list:
|
||
|
for keyword in ai_keywords:
|
||
|
if keyword in danmaku:
|
||
|
count_dict[keyword] += 1
|
||
|
return count_dict
|