写一段画爱心的Python代码
时间: 2023-10-14 11:11:58 浏览: 80
表白python画出心心相印爱心代码
下面是一段用Python绘制爱心的代码:
```python
import turtle
# 创建一个窗口
window = turtle.Screen()
window.bgcolor("white")
# 创建一个海龟
t = turtle.Turtle()
t.shape("turtle")
t.color("red")
t.speed(10)
# 绘制爱心
t.penup()
t.goto(0, -100)
t.pendown()
t.begin_fill()
t.fillcolor("pink")
t.left(45)
t.forward(150)
t.circle(75, 180)
t.right(90)
t.circle(75, 180)
t.forward(150)
t.end_fill()
# 隐藏海龟
t.hideturtle()
# 关闭窗口
window.exitonclick()
```
你可以在Python解释器中运行这段代码,然后就可以看到一个漂亮的爱心了!
阅读全文