plt.plot(t, t, 'r--', color="red") plt.plot(t, t**2, 'bs', color="blue") plt.plot(t, t**3, 'g^', color="green") plt.plot(t, t**4, "o", color="orange")
確定! 回上一頁