turtle模块绘图

Posted cheney-lv

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了turtle模块绘图相关的知识,希望对你有一定的参考价值。

import turtle

#运动命令

# forward(d)  向前移动d长度

# backward(d)  向后移动d长度

# right(d)  向右转动多少度

#left(d)  向左转动多少度

# goto(x,y)  到达指定的坐标

# speed(speed)  笔画绘制的速度[0,10]

# 绘图窗口的原点(0,0)在正中间,方向是右侧

# 笔画控制命令  

# up()  画笔抬起,移动不画图

# down()  画笔落下,移动画图

# setheading()  改变画笔的朝向

# pensize()  笔画宽度

# pencolor()  笔画颜色

# reset()  恢复所有设置,清空窗口,重置turtle状态

# clear()  清空窗口,不会重置turtle

# circle(r,e)  绘制一个圆,r为半径,e为次数(分几次画出一个圆)steps=5(五边形)

 

turtle.begin_file()

turtle.fillcolor(colorstr)

turtle.end_fill()

其他命令

done()  程序继续执行

undo()  撤销上一步

hideturtle()   隐藏画笔

showturtle()  显示画笔

screensize()  窗口尺寸

 

turtle.forward(100)

turtle.right(45)

turtle.backword(300)

 

以上是关于turtle模块绘图的主要内容,如果未能解决你的问题,请参考以下文章

turtle库--海龟绘图

吴裕雄--天生自然python编程:turtle模块绘图

python1.0-----turtle模块

012 模块1-turtle库的使用

turtle模块绘图

Turtle模块,一个超精简但功能齐全的绘图包