使用Python和matplotlib库
```python
import matplotlib.pyplot as plt
创建图形对象
fig, ax = plt.subplots()
绘制第一个圆形
circle1 = plt.Circle((0.2, 0.5), 0.1, color='r')
ax.add_artist(circle1)
绘制第二个圆形
circle2 = plt.Circle((0.5, 0.5), 0.2, color='g')
ax.add_artist(circle2)
绘制第三个圆形
circle3 = plt.Circle((0.8, 0.5), 0.15, color='b')
ax.add_artist(circle3)
设置图形的范围和坐标轴标签
ax.set_xlim([0, 1])
ax.set_ylim([0, 1])
ax.set_aspect('equal')
ax.set_xlabel('X')
ax.set_ylabel('Y')
显示图形
plt.show()
```
使用Python和turtle库
```python
import turtle
创建一个画布和画笔
canvas = turtle.Screen()
pen = turtle.Turtle()
设置画笔的颜色和宽度
pen.color("red")
pen.width(3)
绘制三个空心圆圈
pen.circle(100)
pen.circle(75, 180)
pen.circle(50, 360)
完成绘制
turtle.done()
```
使用JavaScript和HTML5 Canvas
```html