八十多个Turtle画图实战项目分享(超详细)

一、turtle库的基础命令介绍

1、画布

画布cancas是绘图区域,可以设置它的大小和初始位置

语法解释
turtle.screensize(1000,600,‘red’)大小的设置
turtle.setup(width=0.5,height=0.75)初始位置

2、画笔

(1)画笔运动的命令

语法解释
turtle.forward(a)向当前画笔方向移动a像素长度
turtle.backward(a)向当前画笔相反方向移动a像素长度
turtle.right(a)顺时针移动
aturtle.left(a)逆时针移动
aturtle.pendown()移动时绘制图形
turtle.goto(x,y)将画笔移动到坐标为x,y的位置
turtle.penup()移动时不绘制图形,提起笔
turtle.speed(a)画笔绘制的速度范围
turtle.circle()画图,半径为正,表示圆心在画笔的左边画圈

(2)画笔控制命令

语法解释
turtle.pensize(width)绘制图形的宽度
turtle.pencolor()画笔的颜色
turtle.fillcolor(a)绘制图形的填充颜色
turtle.color(a1,a2)同时设置pencolor=a1,fillcolor=a2
turtle.filling()返回当前是否在填充状态
turtle.begin_fill()准备开始填充图形
turtle.end_fill()填充完成
turtle.hideturtle()隐藏箭头显示
turtle.showturtle()显示箭头

(3)全局控制命令

语法解释
turtle.clear()清空turtle窗口,但是turtle的位置和状态不会改变
turtle.reset()清空窗口,重置turtle状态为起始位置
turtle.undo()撤销上一个turtle动作

二、Python绘图小项目

下面是本人在兼职老师,总结的一些Python绘图项目,有需要的可以私信我获取。 应该有七八十个项目,每个项目都有详细的解释说明。 有需要的加v: cmath920 咨询

(1)实例展示

在这里插入图片描述
在这里插入图片描述
在这里插入图片描述
在这里插入图片描述
在这里插入图片描述

(2)目录展示

在这里插入图片描述
在这里插入图片描述

在这里插入图片描述
在这里插入图片描述
在这里插入图片描述
在这里插入图片描述

(3)详细目录展示:

├─Python一期(2022-08版)
│ ├─python–第1期第10课(圆弧)
│ │ │ python–第1期第10课–圆弧(PPT课件).pptx
│ │ │ python–第1期第10课–圆弧(写书教案答案).docx
│ │ │ python–第1期第10课–圆弧(写书教案).docx
│ │ │ python–第1期第10课–圆弧(详细教案).doc
│ │ │
│ │ └─python–第1期第10课–圆弧(源代码)
│ │ 月牙西瓜.py
│ │ 绿色树叶.py
│ │ 量角器.py
│ │
│ ├─Python–第1期第11课(温馨小屋)
│ │ │ Python–第1期第11课–温馨小屋(PPT课件).pptx
│ │ │ Python–第1期第11课–温馨小屋(写书教案答案).docx
│ │ │ Python–第1期第11课–温馨小屋(写书教案).docx
│ │ │ Python–第1期第11课–温馨小屋(详细教案).doc
│ │ │
│ │ └─Python–第1期第11课–温馨小屋(源代码)
│ │ 温馨小屋.py
│ │
│ ├─Python–第1期第12课(画眼睛)
│ │ │ Python–第1期第12课–画眼睛(PPT课件).pptx
│ │ │ Python–第1期第12课–画眼睛(写书教案答案).docx
│ │ │ Python–第1期第12课–画眼睛(写书教案).docx
│ │ │ Python–第1期第12课–画眼睛(详细教案).doc
│ │ │
│ │ └─Python–第1期第12课–画眼睛(源代码)
│ │ 点阵图.py
│ │ 眼睛 - 白色重影.py
│ │ 眼睛.py
│ │
│ ├─Python–第1期第13课(星星花)
│ │ │ Python–第1期第13课–星星花(PPT课件).pptx
│ │ │ Python–第1期第13课–星星花(写书教案答案).docx
│ │ │ Python–第1期第13课–星星花(写书教案).docx
│ │ │ Python–第1期第13课–星星花(详细教案).doc
│ │ │
│ │ └─Python–第1期第13课–星星花(源代码)
│ │ 星星花.py
│ │ 逐渐缩小的圆圈.py
│ │
│ ├─python–第1期第14课(太极)
│ │ │ python–第1期第14课–太极(PPT课件).pptx
│ │ │ python–第1期第14课–太极(写书教案答案).docx
│ │ │ python–第1期第14课–太极(写书教案).docx
│ │ │ python–第1期第14课–太极(详细教案).doc
│ │ │
│ │ └─python–第1期第14课–太极(源代码)
│ │ 太极.py
│ │ 拓展的太极.py
│ │
│ ├─Python–第1期第15课(美队盾牌)
│ │ │ Python–第1期第15课–美队盾牌(PPT课件).pptx
│ │ │ Python–第1期第15课–美队盾牌(写书教案答案).docx
│ │ │ Python–第1期第15课–美队盾牌(写书教案).docx
│ │ │ Python–第1期第15课–美队盾牌(详细教案).doc
│ │ │
│ │ └─Python–第1期第15课–美队盾牌(源代码)
│ │ 使用循环画圆的美队盾牌.py
│ │ 美国队长盾牌.py
│ │
│ ├─Python–第1期第1课(画直线)
│ │ │ Python第一期第1课–画直线(ppt课件).pptx
│ │ │ Python第一期第1课–画直线(写书教案答案).docx
│ │ │ Python第一期第1课–画直线(写书教案).docx
│ │ │ Python第一期第1课–画直线(详细教案).doc
│ │ │
│ │ ├─Python第一期第1课–画直线(源代码)
│ │ │ │ 彩色螺旋.py
│ │ │ │ 消消乐1.1.2.py
│ │ │ │ 滚动的太极.py
│ │ │ │ 猜拳游戏.py
│ │ │ │ 画直线.py
│ │ │ │
│ │ │ └─作业
│ │ │ python-3.4.4.msi
│ │ │ 画直线.py
│ │ │
│ │ └─Python的安装和使用
│ │ Python的安装和使用步骤.docx
│ │ 安装视频.mp4
│ │ 新建和运行代码.mp4
│ │
│ ├─Python–第1期第2课(正方形)
│ │ │ Python第一期第2课–正方形(ppt课件).pptx
│ │ │ Python第一期第2课–正方形(写书教案答案).docx
│ │ │ Python第一期第2课–正方形(写书教案).docx
│ │ │ Python第一期第2课–正方形(详细教案).doc
│ │ │
│ │ └─Python第一期第2课–正方形(源代码)
│ │ │ 三角形.py
│ │ │ 五角星.py
│ │ │ 正方形.py
│ │ │
│ │ └─作业
│ │ python-3.4.4.msi
│ │ 三角形.py
│ │ 五角星.py
│ │ 正方形.py
│ │ 第2课作业.txt
│ │
│ ├─Python–第1期第3课(画圆)
│ │ │ Python第一期第3课–画圆(ppt课件).pptx
│ │ │ Python第一期第3课–画圆(写书教案答案).docx
│ │ │ Python第一期第3课–画圆(写书教案).docx
│ │ │ Python第一期第3课–画圆(详细教案).doc
│ │ │
│ │ └─Python第一期第3课–画圆(源代码)
│ │ 加粗的圆.py
│ │ 四个圆.py
│ │ 火柴人.py
│ │
│ ├─Python–第1期第4课(五角星)
│ │ │ Python第一学期第4课–五角星(ppt课件).pptx
│ │ │ Python第一期第4课–五角星(写书教案答案).doc
│ │ │ Python第一期第4课–五角星(写书教案).docx
│ │ │ Python第一期第4课–五角星(详细教案).doc
│ │ │
│ │ └─Python第一期第4课–五角星(源代码)
│ │ 三角形.py
│ │ 五角星.py
│ │ 对称四圆.py
│ │ 放射线.py
│ │ 正方形.py
│ │
│ ├─Python–第1期第5课(电子数字)
│ │ │ Python一期第5课–电子数字(详细教案).doc
│ │ │ Python第一期第5课–电子数字(ppt课件).pptx
│ │ │ Python第一期第5课–电子数字(写书教案).docx
│ │ │ Python第一期第5课电子数字(写书教案答案).doc
│ │ │
│ │ └─python第5课–电子数字(源代码)
│ │ eight.py
│ │ six.py
│ │ 电子数字.py
│ │ 电子数字3.py
│ │ 电子数字4.py
│ │ 电子数字5.py
│ │
│ ├─Python–第1期第6课(彩色五角星)
│ │ │ Python一期第6课–彩色五角星(详细教案).doc
│ │ │ Python第一期第6课–彩色五角星(ppt课件).pptx
│ │ │ Python第一期第6课–彩色五角星(写书教案答案).docx
│ │ │ Python第一期第6课–彩色五角星(写书教案).docx
│ │ │
│ │ └─python第一期第6课–彩色五角星(源代码)
│ │ 三色三角形.py
│ │ 五色五角星.py
│ │ 四色螺旋线.py
│ │
│ ├─Python–第1期第7课(立体海龟螺旋线)
│ │ │ Python第一期第7课–立体海龟螺旋线(写书教案答案).docx
│ │ │ Python第一期第7课–立体海龟螺旋线(写书教案).docx
│ │ │ Python第一期第7课–立体的海龟螺旋线(ppt课件).pptx
│ │ │ Python第一期第7课-立体海龟螺旋线(详细教案) .doc
│ │ │
│ │ └─python第一期第7课–立体海龟螺旋线(源代码)
│ │ 水滴.py
│ │ 立体海龟螺旋线.py
│ │
│ ├─Python–第1期第8课(期中考试)
│ │ Python第一期第8次课–期中复习(ppt课件).pptx
│ │ Python第一期第8课–期中复习(写书教案答案).docx
│ │ Python第一期第8课–期中复习(写书教案).docx
│ │ Python第一期第8课–期中复习(详细教案).doc
│ │
│ └─Python–第1期第9课(方块爱心)
│ │ Python–第1期第9课–方块爱心(PPT课件).pptx
│ │ Python–第1期第9课–方块爱心(写书教案答案).docx
│ │ Python–第1期第9课–方块爱心(写书教案).docx
│ │ Python–第1期第9课–方块爱心(详细教案).doc
│ │
│ └─Python–第1期第9课–方块爱心(源代码)
│ 方块爱心代码.py
│ 正方体代码.py

├─Python三期(2022-08版)
│ ├─Python–第3期第10课(猜数字)
│ │ │ Python第3期第10次课PPT.pptx
│ │ │ Python第3期第10次课写书教案.docx
│ │ │ Python第3期第10次课详细教案.docx
│ │ │
│ │ └─源代码
│ │ 猜数字.py
│ │
│ ├─Python–第3期第11课(while循环)
│ │ │ Python第3期第11次课PPT.pptx
│ │ │ Python第3期第11次课写书教案.docx
│ │ │ Python第3期第11次课详细教案.docx
│ │ │
│ │ └─源代码
│ │ 赤道.py
│ │
│ ├─Python–第3期第12课(九九乘法表)
│ │ │ Python第3期第12次课PPT.pptx
│ │ │ Python第3期第12次课写书教案.docx
│ │ │ Python第3期第12次课详细教案.docx
│ │ │
│ │ └─源代码
│ │ 左上九九乘法表.py
│ │ 左下九九乘法表.py
│ │
│ ├─Python–第3期第13课(列表)
│ │ │ Python第3期第13次课-列表.pptx
│ │ │ Python第3期第13次课写书教案答案.docx
│ │ │ Python第3期第13次课详细教案.doc
│ │ │
│ │ └─源代码
│ │ 求列表元素和代码.py
│ │ 求列表最大值最小值代码.py
│ │
│ ├─Python–第3期第14课(打怪游戏一)
│ │ │ Python第3期第14次课写书教案答案.docx
│ │ │ Python第3期第14次课详细教案.doc
│ │ │ Python第3期第14次课(打怪游戏一).pptx
│ │ │
│ │ └─源代码
│ │ 打怪游戏_发给学生的部分.py
│ │ 打怪游戏_本节课的代码.py
│ │ 打怪游戏_项目完整代码.py
│ │
│ ├─Python–第3期第15课(打怪游戏二)
│ │ │ Python第3期第15次课写书教案.docx
│ │ │ Python第3期第15次课写书教案答案.docx
│ │ │ Python第3期第15次课详细教案.docx
│ │ │ Python第3期第15次课(打怪游戏二).pptx
│ │ │
│ │ └─源代码
│ │ 打怪游戏_项目完整代码.py
│ │
│ ├─Python–第3期第1课(古诗)
│ │ │ Python第3期第1课PPT.pptx
│ │ │ Python第3期第1课写书教案.docx
│ │ │ Python第3期第1课详细教案.doc
│ │ │
│ │ └─源代码
│ │ 古诗.py
│ │ 弹幕.py
│ │
│ ├─Python–第3期第2课(问卷调查)
│ │ │ Python第3期第2课PPT.pptx
│ │ │ Python第3期第2课写书教案.docx
│ │ │ Python第3期第2课详细教案.docx
│ │ │
│ │ └─源代码
│ │ 同学录.py
│ │ 调查问卷.py
│ │
│ ├─Python–第3期第3课(倒计时)
│ │ │ Python第3期第3课PPT.pptx
│ │ │ Python第3期第3课写书教案.docx
│ │ │ Python第3期第3课详细教案.docx
│ │ │
│ │ └─源代码
│ │ 0.gif
│ │ 1.gif
│ │ 2.gif
│ │ 3.gif
│ │ 4.gif
│ │ 5.gif
│ │ 6.gif
│ │ 7.gif
│ │ 8.gif
│ │ 9.gif
│ │ 导入背景图片计时器.py
│ │ 改变数字颜色.py
│ │ 时间库计时器.py
│ │
│ ├─Python–第3期第4课(模拟QQ登陆)
│ │ │ Python第3期第4次课PPT.pptx
│ │ │ Python第3期第4课写书教案.docx
│ │ │ Python第3期第4课详细教案.docx
│ │ │
│ │ └─源代码
│ │ if双支.py
│ │ Student.py
│ │ 模拟QQ登录.py
│ │
│ ├─Python–第3期第5课(健康指数判断)
│ │ │ Python3期第5课详细教案.doc
│ │ │ Python第3期第5次课PPT.pptx
│ │ │ Python第3期第5课写书教案.docx
│ │ │
│ │ └─源代码
│ │ 健康指数判断.py
│ │ 没有类型转换.py
│ │ 类型转换.py
│ │ 运算符.py
│ │
│ ├─Python–第3期第6课(等级评级)
│ │ │ Python3期第6课写书教案.docx
│ │ │ Python3期第6课详细教案.docx
│ │ │ Python第3期第6次课PPT.pptx
│ │ │
│ │ └─源代码
│ │ 吃鸡等级.py
│ │ 成绩等级.py
│ │ 计算器.py
│ │
│ ├─Python–第3期第7课(月球坑)
│ │ │ Python第3期第7次课PPT.pptx
│ │ │ python第3期第7课写书教案.docx
│ │ │ Python第3期第7课详细教案.docx
│ │ │
│ │ └─源代码
│ │ 月球坑(一).py
│ │ 月球坑(二).py
│ │
│ ├─Python–第3期第8课(期中复习)
│ │ Python第3期第8次课PPT.pptx
│ │ Python第3期第8次课写书教案.docx
│ │ Python第3期第8次课详细教案.docx
│ │
│ └─Python–第3期第9课(猜拳)
│ │ Python第3期第9次课PPT.pptx
│ │ Python第3期第9次课写书教案.docx
│ │ Python第3期第9次课详细教案.docx
│ │
│ └─源代码
│ 猜拳.py

├─Python二期(2022-08版)
│ ├─电脑版–python第二期第10课–橘子
│ │ │ python第二期第10课–橘子(PPT).pptx
│ │ │ python第二期第10课–橘子(写书教案).docx
│ │ │ python第二期第10课–橘子(写书教案答案).docx
│ │ │ python第二期第10课–橘子(详细教案).doc
│ │ │
│ │ └─python第二期第10课–橘子(源代码)
│ │ 橙子.py
│ │ 橙子切面.py
│ │
│ ├─电脑版–python第二期第11课–月食
│ │ │ python第二期第11课–月食(PPT).pptx
│ │ │ python第二期第11课–月食(写书教案).docx
│ │ │ python第二期第11课–月食(写书教案答案).docx
│ │ │ python第二期第11课–月食(详细教案).doc
│ │ │
│ │ └─python第二期第11课–月食(源代码)
│ │ 日食.py
│ │ 月食.py
│ │
│ ├─电脑版–python第二期第12课–飞舞的气球
│ │ │ python第二期第12课–飞舞的气球(PPT).pptx
│ │ │ python第二期第12课–飞舞的气球(写书教案).docx
│ │ │ python第二期第12课–飞舞的气球(写书教案答案).docx
│ │ │ python第二期第12课–飞舞的气球(详细教案).doc
│ │ │
│ │ └─python第二期第12课–飞舞的气球(源代码)
│ │ 流星.py
│ │ 飞舞的气球.py
│ │
│ ├─电脑版–python第二期第13课–变色的灯泡
│ │ │ python第二期第13课–变色的灯泡(PPT).pptx
│ │ │ python第二期第13课–变色的灯泡(写书教案).docx
│ │ │ python第二期第13课–变色的灯泡(写书教案答案).docx
│ │ │ python第二期第13课–变色的灯泡(详细教案).doc
│ │ │
│ │ └─python第二期第13课–变色的灯泡(源代码)
│ │ 变色的灯泡.py
│ │ 变色的灯泡升级版.py
│ │ 灯泡.py
│ │
│ ├─电脑版–python第二期第14课–宝剑
│ │ │ Python第二期第14次课–大宝剑(写书教案).docx
│ │ │ Python第二期第14次课–大宝剑写书教案答案.docx
│ │ │ Python第二期第14次课–大宝剑(ppt课件).pptx
│ │ │ Python第二期第14课–宝剑(详细教案).doc
│ │ │
│ │ └─python第二期第14课–大宝剑(源代码)
│ │ 大宝剑中级.py
│ │ 大宝剑初级.py
│ │ 大宝剑最终版.py
│ │
│ ├─电脑版–python第二期第15课–匕首
│ │ │ Python第二期第15课–匕首写(书教案答案).docx
│ │ │ Python第二期第15课–匕首(ppt课件).pptx
│ │ │ Python第二期第15课–匕首(写书教案).docx
│ │ │ Python第二期第15课–匕首(详细教案).doc
│ │ │
│ │ └─python第二期第15课–匕首(源代码)
│ │ 匕首.py
│ │ 手里剑.py
│ │
│ ├─电脑版–python第二期第1课–笑脸
│ │ │ python第二期第1课–笑脸(PPT课件).pptx
│ │ │ python第二期第1课–笑脸(写书教案).docx
│ │ │ python第二期第1课–笑脸(写书教案答案).docx
│ │ │ python第二期第1课–笑脸(详细教案).doc
│ │ │
│ │ ├─Python的安装包和使用视频
│ │ │ python3.4.rar
│ │ │ python3.6.zip
│ │ │ Python的安装和使用步骤.docx
│ │ │ 安装视频.mp4
│ │ │ 新建和运行代码.mp4
│ │ │
│ │ └─python第二期第1课–笑脸(源代码)
│ │ │ 黄色笑脸.py
│ │ │ 黑白笑脸.py
│ │ │
│ │ └─作业源码
│ │ 坏笑笑脸.py
│ │ 无表情脸.py
│ │
│ ├─电脑版–python第二期第2课–皇冠
│ │ │ python第二期第2课–皇冠(PPT).pptx
│ │ │ python第二期第2课–皇冠(写书教案).docx
│ │ │ python第二期第2课–皇冠(写书教案答案).docx
│ │ │ python第二期第2课–皇冠(详细教案).doc
│ │ │
│ │ └─python第二期第2课–皇冠(源代码)
│ │ 皇冠.py
│ │
│ ├─电脑版–python第二期第3课–奥运五环
│ │ │ python第二期第3课–奥运五环(PPT).pptx
│ │ │ python第二期第3课–奥运五环(写书教案).docx
│ │ │ python第二期第3课–奥运五环(写书教案答案).docx
│ │ │ python第二期第3课–奥运五环(详细教案).doc
│ │ │
│ │ └─python第二期第3课–奥运五环(源代码)
│ │ 奥运五环.py
│ │ 奥迪.py
│ │ 循环的方式绘制奥运五环.py
│ │ 循环的方法绘制奥迪.py
│ │
│ ├─电脑版–python第二期第4课–燃烧的蚊香
│ │ │ python第二期第4课–燃烧的蚊香(PPT).pptx
│ │ │ python第二期第4课–燃烧的蚊香(写书教案).docx
│ │ │ python第二期第4课–燃烧的蚊香(写书教案答案).docx
│ │ │ python第二期第4课–燃烧的蚊香(详细教案).doc
│ │ │
│ │ └─python第二期第4课–燃烧的蚊香(源代码)
│ │ 圆弧的使用.py
│ │ 月亮.py
│ │ 燃烧的蚊香.py
│ │ 用循环画正方形.py
│ │ 课后练习题.py
│ │
│ ├─电脑版–python第二期第5课–彩虹
│ │ │ python第二期第5课–彩虹(PPT).pptx
│ │ │ python第二期第5课–彩虹(写书教案).docx
│ │ │ python第二期第5课–彩虹(写书教案答案).docx
│ │ │ python第二期第5课–彩虹(详细教案).doc
│ │ │
│ │ └─python第二期第5课–彩虹(源代码)
│ │ 彩虹源代码.py
│ │ 彩虹跑道源代码.py
│ │
│ ├─电脑版–python第二期第6课–感叹号
│ │ │ python第二期第6课–感叹号(PPT).pptx
│ │ │ python第二期第6课–感叹号(写书教案).docx
│ │ │ python第二期第6课–感叹号(写书教案答案).docx
│ │ │ python第二期第6课–感叹号(详细教案).doc
│ │ │
│ │ └─python第二期第6课–感叹号(源代码)
│ │ 圈圈.py
│ │ 太阳.py
│ │ 感叹号.py
│ │ 行星.py
│ │
│ ├─电脑版–python第二期第7课–墨镜
│ │ │ python第二期第7课–墨镜(PPT).pptx
│ │ │ python第二期第7课–墨镜(写书教案).docx
│ │ │ python第二期第7课–墨镜(写书教案答案).docx
│ │ │ python第二期第7课–墨镜(详细教案).doc
│ │ │
│ │ └─python第二期第7课–墨镜(源代码)
│ │ │ 墨镜.py
│ │ │ 墨镜(加镜腿).py
│ │ │
│ │ └─墨镜程序题代码答案
│ │ 紫色墨镜.py
│ │ 紫色墨镜(加镜腿).py
│ │
│ ├─电脑版–python第二期第8课–期中复习
│ │ python第二期第8课–期中复习(PPT).pptx
│ │ python第二期第8课–期中复习(写书教案).docx
│ │ python第二期第8课–期中复习(写书教案答案).docx
│ │ python第二期第8课–期中复习(详细教案).doc
│ │
│ └─电脑版–python第二期第9课–创可贴
│ │ python第二期第9课–创可贴(PPT).pptx
│ │ python第二期第9课–创可贴(写书教案).docx
│ │ python第二期第9课–创可贴(写书教案答案).docx
│ │ python第二期第9课–创可贴(详细教案).doc
│ │
│ └─python第二期第9课–创可贴(源代码)
│ 创口贴.py
│ 红绿灯.py

├─Python四期(2022-08版)
│ ├─Python–第4期第10课(编写猜拳游戏界面)
│ │ Python第4期第10课PPT.pptx
│ │ Python第4期第10课写书教案.docx
│ │ Python第4期第10课详细教案.doc
│ │ 猜拳游戏界面.py
│ │
│ ├─Python–第4期第11课(猜拳游戏完整版)
│ │ Python第4期第11课PPT.pptx
│ │ Python第4期第11课写书教案 .docx
│ │ Python第4期第11课详细教案 .doc
│ │ 猜拳游戏完整版.py
│ │
│ ├─Python–第4期第12课(四大象限散点图)
│ │ Python第4期第12课PPT.pptx
│ │ Python第4期第12课写书教案.docx
│ │ Python第4期第12课详细教案.doc
│ │ 拓展–散点图.py
│ │ 散点图.py
│ │
│ ├─Python–第4期第13课(视力表)
│ │ Python第4期第13课PPT.pptx
│ │ Python第4期第13课写书教案.docx
│ │ Python第4期第13课详细教案.doc
│ │ 视力表.py
│ │ 视力表拓展.py
│ │
│ ├─Python–第4期第14课(雪人)
│ │ Python第4期第14课PPT.pptx
│ │ Python第4期第14课写书教案.docx
│ │ Python第4期第14课详细教案.doc
│ │ 拓展–雪人.py
│ │ 雪人.py
│ │
│ ├─Python–第4期第15课(蜘蛛侠)
│ │ Python第4期第15课PPT.pptx
│ │ Python第4期第15课写书教案 .docx
│ │ Python第4期第15课详细教案 .doc
│ │ 蜘蛛侠拓展代码.py
│ │ 蜘蛛侠源代码.py
│ │
│ ├─Python–第4期第1课(红包)
│ │ Python第4期第1次课(红包).pptx
│ │ Python第4期第1课写书教案.docx
│ │ Python第4期第1课详细教案.doc
│ │ 红包.py
│ │ 绘制微信红包.py
│ │
│ ├─Python–第4期第2课(放烟花)
│ │ Python第4期第2课PPT.pptx
│ │ Python第4期第2课写书教案.docx
│ │ Python第4期第2课详细教案 .doc
│ │ 放烟花.py
│ │ 放烟花代码演示视频.mp4
│ │
│ ├─Python–第4期第3课(钟表)
│ │ Python第4期第3课PPT.pptx
│ │ Python第4期第3课写书教案.docx
│ │ Python第4期第3课详细教案.doc
│ │ 拓展–钟表.py
│ │ 钟表.py
│ │
│ ├─Python–第4期第4课(抖音标志)
│ │ Python第4期第4课PPT.pptx
│ │ Python第4期第4课写书教案 .docx
│ │ Python第4期第4课详细教案 .doc
│ │ 抖音标志.mp4
│ │ 抖音标志.py
│ │
│ ├─Python–第4期第5课(随机生成密码)
│ │ join案例.py
│ │ Python第4期第5次课(随机生成密码).pptx
│ │ Python第4期第5课写书教案.docx
│ │ Python第4期第5课详细教案.doc
│ │ random.sample()的用法.py
│ │ 拓展项目.py
│ │ 随机密码.py
│ │
│ ├─Python–第4期第6课(微信图标)
│ │ Python第4期第6课PPT.pptx
│ │ Python第4期第6课写书教案.docx
│ │ Python第4期第6课详细教案.doc
│ │ 微信图标.py
│ │ 拓展–聊天气泡.py
│ │
│ ├─Python–第4期第7课(限量睫毛)
│ │ Python第4期第7课PPT.pptx
│ │ Python第4期第7课写书教案.docx
│ │ Python第4期第7课详细教案.doc
│ │ 拓展-胡子面具.py
│ │ 限量款睫毛.py
│ │
│ ├─Python–第4期第8课(期中复习)
│ │ Python第4期第8课PPT.pptx
│ │ Python第4期第8课写书教案.docx
│ │ Python第4期第8课详细教案.doc
│ │
│ └─Python–第4期第9课(滑雪)
│ Python第4期第9课PPT.pptx
│ Python第4期第9课写书教案 .docx
│ Python第4期第9课详细教案 .doc
│ 桃心.gif
│ 睡莲.gif

└─python课件5期
├─python混合班-动画1-美好家庭
│ 1家庭.gif
│ 2爱心.gif
│ 混合班动画第1课【美好家庭】.pptx
│ 美好家庭.py

├─python混合班-动画2-家庭照片
│ 乔治.gif
│ 佩奇.gif
│ 家庭照片.py
│ 混合班动画第2课【家庭照片】.pptx
│ 猪爸爸妈妈.gif

├─python混合班-动画2-家庭照片(1)
│ 乔治.gif
│ 佩奇.gif
│ 家庭照片.py
│ 混合班动画第2课【家庭照片】.pptx
│ 猪爸爸妈妈.gif

├─python混合班-动画3-可爱螃蟹
│ 可爱螃蟹.py
│ 右钳子.gif
│ 左钳子.gif
│ 混合班动画第3课【可爱螃蟹】.pptx
│ 眼睛.gif
│ 螃蟹背景.gif
│ 蟹壳.gif
│ 蟹腿.gif

├─Python混合班-动画4-人体骨骼
│ 人体骨骼.pptx
│ 人体骨骼.py
│ 右腿.gif
│ 右臂.gif
│ 头.gif
│ 左腿.gif
│ 左臂.gif
│ 背景.gif
│ 躯干.gif

├─python混合班-动画5-盛开的花
│ python混合班-动画5-盛开的花.pptx
│ 盛开的花(一).py
│ 盛开的花(二)(六瓣).py

├─python混合班-画图1-繁星满天
│ 案例3-画图-繁星满天(一).py
│ 案例3-画图-繁星满天(二).py
│ 繁星满天.pptx

├─python混合班-画图3-鼠标
│ Python混合班-画图2-鼠标ppt.pptx
│ 鼠标.py

├─python混合班-画图4-一笔画
│ 一笔画.py
│ 混合班画图第4课【一笔画】.pptx

├─python混合班-画图5-妙笔生花
│ 妙笔生花.py
│ 混合班画图第5课【妙笔生花】.pptx

├─python混合班-闯关1-画迷宫
│ │ python混合班-闯关1-画迷宫.pptx
│ │
│ └─源代码
│ │ 画直线.py
│ │ 迷宫(基础).py
│ │
│ └─作业
│ python-3.4.4.msi

├─python混合班-闯关2-走迷宫
│ b1.png
│ python混合班-闯关2-走迷宫.pptx
│ 完整.gif
│ 走迷宫.py

├─python混合班-闯关3-闯迷宫
│ python混合班-闯关-闯迷宫.pptx
│ 地图.png
│ 闯迷宫.gif
│ 闯迷宫.py

├─python混合班-闯关4-找线索
│ python混合班-闯关-找小狗.pptx
│ 地图.png
│ 找小狗.py

└─python混合班-闯关5-数字字母迷宫
python混合班-闯关5-数字、字母迷宫.pptx
地图.png
数字字母迷宫.py
键盘.gif
鼠标.gif

  • 1
    点赞
  • 22
    收藏
    觉得还不错? 一键收藏
  • 9
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论 9
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值