import numpy as np import matplotlib.pyplot as plt x = np.array([10,20,30,40,50]) y = np.arange(1,5) plt.scatter(x=x,y=y) plt.show().
確定! 回上一頁