import matplotlib.pyplot as pltimport numpy as npx = np.linspace(0.05,10,1000)y = np.random.rand(1000)plt.scatter(x,y,label="scatter ...
確定! 回上一頁