import numpy as np # 引入NumPy import matplotlib.pyplot as plt # 引入matplotlib的函數 x = np.arange(20) # x軸的值 y = 3 * x + 1 # y軸的值
確定! 回上一頁