27 lines
394 B
Python
27 lines
394 B
Python
import turtle
|
|
|
|
# 设置画布和画笔
|
|
screen = turtle.Screen()
|
|
screen.bgcolor("white")
|
|
|
|
pen = turtle.Turtle()
|
|
pen.color("red")
|
|
pen.fillcolor("red")
|
|
pen.speed(2)
|
|
|
|
# 开始绘制爱心
|
|
pen.begin_fill()
|
|
pen.left(140)
|
|
pen.forward(180)
|
|
pen.circle(-90, 200)
|
|
pen.setheading(60)
|
|
pen.circle(-90, 200)
|
|
pen.forward(180)
|
|
pen.end_fill()
|
|
|
|
# 隐藏画笔
|
|
pen.hideturtle()
|
|
|
|
# 保持窗口打开
|
|
turtle.done()
|