pcolor_small.py
来自「非原创。很好的python例子」· Python 代码 · 共 17 行
PY
17 行
#!/usr/bin/env pythonfrom pylab import *#Z = arange(60)#Z.shape = 6,10#Z.shape = 10,6#print ZZ = rand(10,6)#c = pcolor(Z, shading='flat') # default 'faceted'c = pcolor(Z)c.set_linewidth(4)#savefig('pcolor_small')show()
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?