wubianxuyu

导航

 

2023年12月28日

摘要: import jieba txt = open("红楼梦.txt","r",encoding = 'UTF-8').read() words = jieba.lcut(txt) count = {} for word in words: if len(word) ==1: continue else 阅读全文
posted @ 2023-12-28 22:23 无边絮雨 阅读(3) 评论(0) 推荐(0) 编辑
 
摘要: import pygame import sys import random import time import math class Bird(object): def __init__(self): self.birdRect = pygame.Rect(65, 50, 50, 50) sel 阅读全文
posted @ 2023-12-28 21:40 无边絮雨 阅读(5) 评论(0) 推荐(0) 编辑