import matplotlib.pyplot as plt plt.clf() import numpy as np props = np.random.randint(0,100,(200,)) x=np.arange(1,201,1) plt.plot(x,props,c='k') ...
確定! 回上一頁