turtle库基本使用
Posted lisi01
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了turtle库基本使用相关的知识,希望对你有一定的参考价值。
import turtle as t
t.pensize(2) 设置画笔粗细
Example:
>>> pensize()
1
>>> pensize(10) # from here on lines of width 10 are drawn
t.color(‘red‘,‘red) 设置画笔颜色和填充颜色
Example:
>>> color(‘red‘, ‘green‘)
>>> color()
(‘red‘, ‘green‘)
>>> colormode(255)
>>> color((40, 80, 120), (160, 200, 240))
>>> color()
(‘#285078‘, ‘#a0c8f0‘)
t.circle(10) 圆心在海龟左侧10像素的圆
circle(radius, extent=None, steps=None) 半径,角度,边数
Draw a circle with given radius.
>>> t.circle(50,360,6)
>>> t.circle(50,180,6)
>>> t.circle(50,180,6)
t.fd(100) 向前走100像素
t.begin_fill() 在绘制要填充的形状之前调用。t.end_fill() 填充调用begin_fill()后绘制的形状
Example:
>>> color("black", "red")
>>> begin_fill()
>>> circle(60)
>>> end_fill()
以上是关于turtle库基本使用的主要内容,如果未能解决你的问题,请参考以下文章