turtle库的基本使用
Posted syl-777
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了turtle库的基本使用相关的知识,希望对你有一定的参考价值。
TURTLE
import turtle #导入turtle库
turtle.setup(a,b,c,d) #设置绘画界面大小和位置(a,b画布长宽,c,d:画布与界面的边距)
turtle.pensize() #画笔粗细
turtle.pencolor() #画笔颜色
turtle.speed() #画笔移动速度
turtle.penup() #提起画笔,之后的移动不再绘制出线条,只移动画笔位置
turtle.pendown() #放下画笔
turtle.goto() #移动到某一坐标点
turtle.fd() #前进__距离
turtle.backward() #后退---距离
turtle.circle(半径,角度) #画圆
turtle.fillcolor() #设置填充颜色
turtle.begin_fill() #开始填充
turtle.end_fill() #结束填充
例:绘制黄色五角星
1 import turtle
2 turtle.fillcolor(‘yellow‘)
3 turtle.begin_fill()
4 for i in range(5):
5 turtle.fd(200)
6 turtle.right(144)
7 turtle.end_fill()
以上是关于turtle库的基本使用的主要内容,如果未能解决你的问题,请参考以下文章
turtle库的几个案例进阶,代码可直接运行(python经典编程案例)