matplotlib-01-簡易繪圖
發表於 : 2018年 10月 29日, 08:40
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()