python:turtle画图 螺旋线

python:turtle画图 螺旋线:

https://python123.io/index/turtles/5f24356a8906b11e422aa7d3

截图:

python:turtle画图 螺旋线_第1张图片

代码:

#20200731 程序猿
# python画图
import turtle
 
pen_len = 40
 
 
def draw(size):
        turtle.penup()
        turtle.forward(size*0.6)
        turtle.pendown()
        turtle.forward(size*0.4)
        turtle.penup()
        turtle.backward(size)
 
def main():
    turtle.speed(5)
    turtle.showturtle()
    # 画笔隐形
    # 画笔有效
    turtle.pendown()
    turtle.pensize(2)
    turtle.color('brown')

    for i in range(64):
        if i>36:
            turtle.color('green')
        draw(10+i*3)
        turtle.left(10)
        
main()

 

你可能感兴趣的:(python,钢七连软件技术慕课)