f, ax = plt.subplots(1) for side in ax.spines.keys(): # 'top', 'bottom', 'left', 'right' ax.spines[side].set_linewidth(5) plt.plot(numpy.arange(10)) ...
確定! 回上一頁