diff --git a/弹幕排名.py b/弹幕排名.py new file mode 100644 index 0000000..fd36a1c --- /dev/null +++ b/弹幕排名.py @@ -0,0 +1,9 @@ +def top_danmakus(keyword_counts, top_n=8): + """ + 返回出现次数最多的前N个弹幕。 + :param keyword_counts: 弹幕及其出现次数的字典 + :param top_n: 排行榜的长度 + :return: 前N个弹幕及其出现次数 + """ + sorted_counts = sorted(keyword_counts.items(), key=lambda item: item[1], reverse=True) + return dict(sorted_counts[:top_n]) \ No newline at end of file