使用Python的turtle库
导入turtle库
```python
from turtle import *
```
设置绘图环境
可以对画笔的速度、颜色、粗细等进行设置。
定义绘制爱心的函数
```python
def draw_heart():
penup()
goto(0, -100)
pendown()
color('red')
begin_fill()
setheading(150)
circle(200, 90)
left(90)
circle(200, 90)
end_fill()
hideturtle()
```
调用函数进行绘制并显示图形
```python
draw_heart()
done()
```
使用JavaScript和HTML5 Canvas
创建HTML文件
```html