使用Python中的matplotlib庫可以很方便地畫折線圖。下面是一個簡單的示例代碼:
import matplotlib.pyplot as plt
# x軸數據
x = [1, 2, 3, 4, 5]
# y軸數據
y = [1, 4, 9, 16, 25]
# 使用plot函數繪制折線圖
plt.plot(x, y)
# 添加標題和坐標軸標簽
plt.title("折線圖示例")
plt.xlabel("x軸")
plt.ylabel("y軸")
# 顯示網格線
plt.grid(True)
# 顯示圖形
plt.show()
運行上述代碼后,就可以在窗口中看到一個簡單的折線圖。可以根據實際需要修改x軸和y軸的數據以及添加其他的樣式和屬性來定制自己的折線圖。