turtle.penup() 别名 turtle.pu() :抬起画笔海龟在飞行
turtle.pendown() 别名 turtle.pd():画笔落下,海龟在爬行
turtle.pensize(width) 别名 turtle.width(width) :设置画笔的宽度,海龟的腰围
很多人学习python,不知道从何学起。
很多人学习python,掌握了基本语法过后,不知道在哪里寻找案例上手。
很多已经做案例的人,却不知道如何去学习更加高深的知识。
那么针对这三类人,我给大家提供一个好的学习平台,免费领取视频教程,电子书籍,以及课程的源代码!
QQ群:1097524789
turtle.pencolor(color) color为颜色字符串或r,g,b值 :
颜色字符串:turtle.pencolor("red")
RGB的小数值:turtle.pencolor(0.63,0.13,0.94)
RGB的元组值:turtle.pencolor((0.63,0.13,0.94))
运动控制函数:
turtle.forward(d) 别名: turtle.fd(d)
向前直行,海龟走直线 d:行进距离可以为负数
turtle.circle(r,extent=None)
根据半径 r 绘制 extent角度的弧形
r:默认圆心在海龟左侧r距离的位置
extent:绘制角度,默认是360度整圆
turtle.seth(angle)
控制海龟的的方向
补充知识&