python表白超炫图形代码
时间: 2023-07-02 21:21:32 浏览: 166
Python满屏表白代码
5星 · 资源好评率100%
以下是一个简单的Python程序,可以绘制一个心形图案:
```python
import turtle
t = turtle.Turtle()
t.speed(0)
t.hideturtle()
def curve():
for i in range(200):
t.right(1)
t.forward(1)
t.color('red', 'pink')
t.begin_fill()
t.left(140)
t.forward(111.65)
curve()
t.left(120)
curve()
t.forward(111.65)
t.end_fill()
turtle.done()
```
你可以运行这个程序,来看看这个表白超炫图形!
阅读全文