python构建多张折线图,用户通过输入折线图标题来输出对于的折线图的代码
时间: 2024-05-08 19:17:37 浏览: 100
你可以使用Matplotlib库来构建多张折线图,以下是一个简单的示例代码:
```python
import matplotlib.pyplot as plt
# 折线图数据
x = [1, 2, 3, 4, 5]
y1 = [5, 3, 6, 7, 4]
y2 = [2, 6, 3, 8, 5]
y3 = [1, 4, 2, 9, 6]
# 用户输入折线图标题
title = input('请输入折线图标题:')
# 绘制折线图
plt.plot(x, y1, label='y1')
plt.plot(x, y2, label='y2')
plt.plot(x, y3, label='y3')
plt.title(title)
plt.legend()
plt.show()
```
用户输入折线图标题后,代码会绘制出对应标题的折线图。注意,这只是一个简单示例,具体的折线图构建方式可以根据需求进行调整。
阅读全文