import numpy as np x = np.linspace(0,6,100) y = np.sin(x) z = np.cos(x) import matplotlib.pyplot as plt plt.plot(x,y,'r--',linewidth=3)
確定! 回上一頁