python画粉色爱心代码
时间: 2023-09-13 07:07:57 浏览: 245
python爱心代码python爱心代码高级.zip
下面是Python画粉色爱心的代码:
```python
import turtle
t = turtle.Turtle()
t.speed(0)
t.hideturtle()
# 画爱心
t.pensize(3)
t.pencolor("#ff6b6b") # 粉色
t.fillcolor("#ff6b6b") # 填充颜色
t.begin_fill()
t.left(45)
t.forward(100)
t.circle(50, 180)
t.right(90)
t.circle(50, 180)
t.forward(100)
t.end_fill()
# 写字
t.pencolor("#ffffff") # 白色
t.up()
t.goto(-80, -120)
t.down()
t.write("I Love You", font=("Arial", 24, "normal"))
turtle.done()
```
希望你喜欢!
阅读全文