subplots_adjust.py
来自「非原创。很好的python例子」· Python 代码 · 共 13 行
PY
13 行
from pylab import *subplot(211)imshow(rand(100,100))subplot(212)imshow(rand(100,100))subplots_adjust(bottom=0.1, right=0.8, top=0.9)cax = axes([0.85, 0.1, 0.075, 0.8])colorbar(cax=cax)show()
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?