摘要:
话不多说,直接上代码。 import jieba txt = open("C:\\Users\\Administrator\\Desktop\\流浪地球","r", encoding='utf-8').read() words = jieba.lcut(txt) counts = {} for wo 阅读全文
摘要:
话不多说,直接上代码及汉诺塔动态实现图。。。 import turtle class Stack: def __init__(self): self.items = [] def isEmpty(self): return len(self.items) == 0 def push(self, it 阅读全文
摘要:
一、安装tqdm库 1、利用cmd命令提示符,进入python所在的文件盘 2、输入 pip install tqdm 即可安装tqdm库 二、输入代码 三、运行结果 阅读全文
摘要:
1.准备工作: 代码中用到numpy和matplotlib,需要先安装这两个库 pip3 install numpypip3 install matplotlib 会用到的数学公式:(x^2+y^2-1)^3+x^2*y^3=0 2.编写代码: importnumpy asnp importmatp 阅读全文