【python】画一个爱心

python画爱心

做二级python题目的时候,遇到了一个画爱心编程题,感觉挺有趣的,把它搬到这里来。

from turtle import *
def curvemove():
    for i in range(200):
        right(1)
        forward(1)
setup(600,600,400,400)
hideturtle()
pencolor('black')
fillcolor("red")
pensize(2)
begin_fill()
left(140)
forward(111.65)
curvemove()
left(120)
curvemove()
forward(111.65)
end_fill()
penup()
goto(-27, 85)
pendown()
done()

运行结果如下:

【python】画一个爱心_第1张图片

你可能感兴趣的:(算法,python)