使用matplotlib库
```python
import numpy as np
import matplotlib.pyplot as plt
生成数据
t = np.linspace(0, 2 * np.pi, 1000)
x = 16 * np.sin(t)3
y = 13 * np.cos(t) - 5 * np.cos(2*t) - 2 * np.cos(3*t) - np.cos(4*t)
创建绘图
plt.figure(figsize=(8, 6))
plt.plot(x, y, color='red')
plt.fill(x, y, color='red', alpha=0.6)
plt.title('Python', fontsize=18)
plt.axis('equal')
plt.grid(True)
plt.show()
```
使用turtle库
```python
import turtle
设置窗口大小和背景颜色
turtle.setup(width=800, height=600)
turtle.bgcolor("black")
turtle.pensize(2)
turtle.speed(0)
定义一个函数来绘制爱心
def draw_heart():
turtle.color("red")
turtle.begin_fill()
绘制爱心的曲线
turtle.left(140)
turtle.forward(224)
for _ in range(200):
turtle.right(1)
turtle.forward(2)
turtle.left(120)
for _ in range(200):
turtle.right(1)
turtle.forward(2)
turtle.end_fill()
开始绘制爱心
draw_heart()
隐藏海龟并显示窗口
turtle.hideturtle()
turtle.done()
```
使用Tkinter库