Python用turtle模块画图

Posted

tags:

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

学习使用模块turtle画图功能,主要记住几个参数
import turtle #导入turtle画图模块
turtle.showturtle() #调出turtle画板
turtle.forward(100) #坐标前进100个位置
turtle.penup() #画图的画笔抬起
turtle.goto(200,0) #坐标移动到x=200,y=0的位置
turtle.pendown() #画笔放下,可以开始画出图案
turtle.circle(100) #画出直径100像素的圆

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

使用Python的turtle(海龟)模块画图

使用Python的turtle(海龟)模块画图

#18 turtle模块

python 用turtle库画图

python turtle画图怎么连接两点

python案例——利用python画图