python 画曲线图
时间: 2023-08-28 18:06:01 浏览: 54
huatu.zip_python 图_python曲线图_python画图_python画曲线图_曲线图
5星 · 资源好评率100%
可以使用Matplotlib库来画曲线图,比如:
```
import matplotlib.pyplot as plt
x = [1, 2, 3, 4, 5]
y = [2, 4, 6, 8, 10]
plt.plot(x, y)
plt.show()
```
这段代码使用了Matplotlib的plot函数来画出x和y的折线图,最后用show函数显示出来。希望对您有所帮助!
阅读全文