1 頁 (共 1 頁)

matplotlib-01-簡易繪圖

發表於 : 2018年 10月 29日, 08:40
cajhbb
matplotlib-01-簡易繪圖
# -*- coding: utf-8 -*-
"""
要使用matplot的話,先輸入matplotlib.pyplot as plt
"""
import matplotlib.pyplot as plt

plt.plot([10, 20, 30])
plt.xlabel('tiems')
plt.ylabel('numbers')
plt.show()
2018-10-29_164123.png
2018-10-29_164123.png (8.97 KiB) 已瀏覽 1000 次