import matplotlib.pyplot as plt x = [1, 2, 3, 4, 5, 6, 7, 8] y = [5, 2, 4, 2, 1, 4, 5, 2] plt.scatter(x, y, marker='*', s=100) plt.show().
確定! 回上一頁