摘要: import jieba from collections import Counter import re 加载红楼梦的文本 def load_text(file_path): with open(file_path, 'r', encoding='utf-8') as file: text = 阅读全文
posted @ 2025-06-22 14:56 magixx 阅读(12) 评论(0) 推荐(0)
摘要: import pygame import time import random 初始化pygame pygame.init() 定义颜色 white = (255, 255, 255) yellow = (255, 255, 102) black = (0, 0, 0) red = (213, 50 阅读全文
posted @ 2025-06-22 14:39 magixx 阅读(29) 评论(0) 推荐(0)