摘要:
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 阅读全文
摘要:
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 阅读全文