import numpy as np import matplotlib.pyplot as plt x = np.arange(0, 100) #作圖1 plt.subplot(221) plt.plot(x, x) #作圖2 plt.subplot(222) ...
確定! 回上一頁