Python中使用matplotlib
库可以轻松地画出直线。
首先需要导入matplotlib
库:
import matplotlib.pyplot as plt
然后定义直线的起点坐标和终点坐标:
x1, y1 = 1, 1
x2, y2 = 5, 5
接下来,使用plot
函数绘制直线:
plt.plot([x1, x2], [y1, y2])
最后使用show
函数显示绘制的图像:
plt.show()
完整的示例代码:
import matplotlib.pyplot as plt
x1, y1 = 1, 1
x2, y2 = 5, 5
plt.plot([x1, x2], [y1, y2])
plt.show()
运行以上代码即可在窗口中显示一条从坐标(1,1)到坐标(5,5)的直线。