# -*- 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()
matplotlib-01-簡易繪圖
matplotlib-01-簡易繪圖
matplotlib-01-簡易繪圖