摘要:
import jieba from wordcloud import WordCloud import matplotlib.pyplot as plt fr=open('t.txt','r',encoding='utf-8').read() words=jieba.lcut(fr) excludes={'.....'} counts={} for word in words: if ... 阅读全文
摘要:
for i in range(12): print(chr(9800+i),end="/") sr1="abcdefghijklmnopqrstuvwxyz" sr2=sr1.upper() sr=sr1+sr1+sr2+sr2 st=input("please input:") sR="" for j in st: if j==" ": sR = sR +... 阅读全文
摘要:
from turtle import * begin_fill() fillcolor("yellow") for i in range(5): forward(200) right(144) end_fill() from turtle import * begin_fill() fillcolor("yellow") while True: forward(200... 阅读全文