05 2020 档案
摘要:import turtle def draw(points): # 根据三个坐标,画一个三角形 t.penup() t.goto(points['left']) t.pendown() t.goto(points['top']) t.goto(points['right']) t.goto(poin
阅读全文
摘要:约瑟夫问题:有x个人围成一圈,从某个人开始报数,报到y数的人自杀,然后从死掉的这个人的下一个人开始重新报数,循环往复,一直到剩下一个人。 class Queue(): # 使用python内置的list,实现简单的队列 def __init__(self): self.queue = [] def
阅读全文
摘要:class Node(): def __init__(self,Data): self.data = Data # 当前节点 self.next = None # 下一节点,为None表示没有下一个节点 def getData(self): return self.data def getNext(
阅读全文
|
|||||||||
日 | 一 | 二 | 三 | 四 | 五 | 六 | |||
---|---|---|---|---|---|---|---|---|---|
23 | 24 | 25 | 26 | 27 | 28 | 1 | |||
2 | 3 | 4 | 5 | 6 | 7 | 8 | |||
9 | 10 | 11 | 12 | 13 | 14 | 15 | |||
16 | 17 | 18 | 19 | 20 | 21 | 22 | |||
23 | 24 | 25 | 26 | 27 | 28 | 29 | |||
30 | 31 | 1 | 2 | 3 | 4 | 5 |
搜索
随笔档案
- 2023年10月(1)
- 2023年8月(1)
- 2023年6月(1)
- 2023年5月(2)
- 2023年3月(1)
- 2023年2月(2)
- 2022年12月(1)
- 2022年11月(1)
- 2022年9月(2)
- 2022年8月(1)
- 2022年7月(5)
- 2022年6月(2)
- 2022年5月(4)
- 2022年4月(9)
- 2022年3月(2)
- 2022年1月(5)
- 2021年12月(2)
- 2021年11月(5)
- 2021年10月(3)
- 2021年9月(2)
- 2021年8月(6)
- 2021年7月(5)
- 2021年6月(1)
- 2021年5月(1)
- 2021年4月(1)
- 2021年3月(4)
- 2021年2月(2)
- 2021年1月(2)
- 2020年11月(5)
- 2020年10月(2)
- 2020年9月(3)
- 2020年8月(3)
- 2020年7月(4)
- 2020年6月(11)
- 2020年5月(3)
- 2020年4月(1)
- 2020年3月(1)
- 2020年2月(3)
- 2020年1月(4)
- 2019年12月(15)
- 2019年11月(21)
- 2019年10月(15)
- 更多
最新评论
- 1. Re:python制作wheel包
pip3 install build
python3 -m build- --小弧光
- 2. Re:python 类型注解
总结的非常全面。
- --零度出土
- 3. Re:python 大图中找小图所在坐标
干了一晚上的咖啡,终于知道左上角的坐标是如何得来的。就是一个小矩形在一个大矩形里从左向右一个一个像素点的跑,起点为左上角。
- --一杯水果茶
- 4. Re:python 大图中找小图所在坐标
- result = cv2.matchTemplate(self.source_img.image, self.template_img.image, method) locations = numpy...
- --一杯水果茶
- 5. Re:Nginx 简介
这是我遇到的最全面的关于Centos7 Nginx教程``````
- --ThankCAT