用python制作一个会跳动的爱心
时间: 2024-03-09 13:04:12 浏览: 54
好的,以下是Python代码,可以在Python 3.x版本中运行,用Turtle库绘制一个跳动的爱心。
```python
import turtle
# 初始化turtle画布
t = turtle.Turtle()
t.hideturtle()
t.speed(5)
t.pensize(3)
t.penup()
# 绘制红色的爱心
t.color('red')
t.goto(0, -100)
t.pendown()
t.begin_fill()
t.left(45)
t.forward(150)
t.circle(75, 180)
t.right(90)
t.circle(75, 180)
t.forward(150)
t.end_fill()
# 绘制白色的跳动部分
t.color('white')
t.penup()
t.goto(-60, 0)
t.pendown()
t.begin_fill()
t.circle(20)
t.end_fill()
t.penup()
t.goto(60, 0)
t.pendown()
t.begin_fill()
t.circle(20)
t.end_fill()
# 循环跳动效果
while True:
t.penup()
t.goto(-60, 0)
t.pendown()
t.begin_fill()
t.circle(20, 180)
t.end_fill()
t.penup()
t.goto(60, 0)
t.pendown()
t.begin_fill()
t.circle(20, 180)
t.end_fill()
turtle.done()
```
运行代码后,将会看到窗口中跳动的爱心。
阅读全文