fig, ax = plt.subplots(figsize=(8, 5)) # 定义画布和图形 ax.plot(x, y1, lw=1.5, color="blue", label=r"$y(x)$") ax.plot(x, y2, lw=1.5, color="red", ...
確定! 回上一頁