码迷,mamicode.com
首页 > 其他好文 > 详细

turtle库的基本使用

时间:2019-03-31 09:16:34      阅读:303      评论:0      收藏:0      [点我收藏+]

标签:yellow   bsp   setup   port   导入   后退   goto   for   坐标   

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库的基本使用

标签:yellow   bsp   setup   port   导入   后退   goto   for   坐标   

原文地址:https://www.cnblogs.com/syl-777/p/10630196.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!