python Copy import math import numpy as np import matplotlib.pyplot as plt x=np.linspace(0,2*math.pi,100) y=np.sin(x) plt.plot(x, ...
確定! 回上一頁