import numpy as np import matplotlib.pyplot as plt x = np.arange(-10,10,0.5) for i in range(1,6): y = i/x plt.plot(x,y) plt.legend(["1", ...
確定! 回上一頁