利用Python 海龟绘图circle函数除了可以画出圆形,还可以画多边形
import turtle
t = turtle.Pen()
t.pensize(20)
t.pencolor("red")
# 参数1:半径,参数2:角度
t.circle(200,90)
t.pencolor("yellow")
t.circle(200,90)
t.pencolor("blue")
t.circle(200,90)
t.pencolor("green")
t.circle(200,90)
t.pencolor("violet")
# 参数1:半径,参数2:角度,参数3:边数
t.circle(200,360,8)
turtle.done()
运行效果: