Python
使用Python的`turtle`库可以很容易地绘制一个爱心图案。以下是一个示例代码:
```python
import turtle
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()
draw_heart()
turtle.done()
```
JavaScript (HTML Canvas)
```html