编程怎么画两个圆形

时间:2025-01-27 12:08:27 网络游戏

使用Python的turtle库

```python

import turtle

创建画布

screen = turtle.Screen()

screen.title("Draw Two Circles")

创建两个画笔

pen1 = turtle.Turtle()

pen2 = turtle.Turtle()

绘制第一个圆形

pen1.circle(100) 半径为100

设置第二个画笔的起始位置

pen2.penup()

pen2.setpos(200, 0)

pen2.pendown()

绘制第二个圆形

pen2.circle(50) 半径为50

隐藏画笔

pen1.hideturtle()

pen2.hideturtle()

显示绘图窗口

turtle.done()

```

使用Python的matplotlib库

```python

import matplotlib.pyplot as plt

创建画布

fig, ax = plt.subplots()

画第一个圆

circle1 = plt.Circle((0.5, 0.5), 0.3, color='blue', fill=False)

ax.add_artist(circle1)

画第二个圆

circle2 = plt.Circle((0.5, 0.5), 0.1, color='red', fill=False)

ax.add_artist(circle2)

设置坐标轴比例相等

plt.axis('equal')

显示画布

plt.show()

```

使用JavaScript和HTML5 Canvas

```html

Draw Two Circles