共计 430 个字符,预计需要花费 2 分钟才能阅读完成。
要使用 Python 画简单的图形,你可以使用 Python 的绘图库 matplotlib。下面是一个使用 matplotlib 绘制简单直线和圆形的示例代码:
import matplotlib.pyplot as plt
# 绘制直线
x = [0, 1, 2, 3, 4]
y = [0, 2, 4, 6, 8]
plt.plot(x, y)
# 绘制圆形
circle = plt.Circle((5, 5), radius=2, fc='blue')
plt.gca().add_patch(circle)
# 设置图形标题和坐标轴标签
plt.title('Simple Graph')
plt.xlabel('X-axis')
plt.ylabel('Y-axis')
# 显示图形
plt.show()
运行以上代码,将会生成一个简单的图形窗口,其中包含一条直线和一个圆形。你可以根据需要进行修改和扩展,绘制出更复杂的图形。
丸趣 TV 网 – 提供最优质的资源集合!
正文完