import matplotlib.pyplot as plt fig, axs = plt.subplots(1, 2) fig.suptitle('I am figure title') axs[0].plot([2,1,5,2,3]) axs[0].set_title('first line') ...
確定! 回上一頁