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