共计 461 个字符,预计需要花费 2 分钟才能阅读完成。
在 Python 中,我们可以使用 matplotlib 库的 pyplot 模块来绘制圆形。以下是一个示例代码:
import matplotlib.pyplot as plt
circle = plt.Circle((0.5, 0.5), 0.2, color='blue')
fig, ax = plt.subplots()
ax.add_artist(circle)
plt.axis('scaled')
plt.show()
在这个示例代码中,我们首先导入了 matplotlib.pyplot 库,并创建了一个 Circle 对象。Circle 函数的第一个参数是圆心的坐标,第二个参数是圆的半径,第三个参数是圆的颜色。
接下来,我们使用 plt.subplots() 函数创建了一个 Figure 对象和一个 Axes 对象,并使用 ax.add_artist() 方法将圆形添加到 Axes 对象中。
最后,我们使用 plt.axis(‘scaled’) 函数调整坐标轴的比例,并使用 plt.show() 函数显示图形。
丸趣 TV 网 – 提供最优质的资源集合!
正文完