如果我运行python控制台并执行
import matplotlib
matplotlib.__version__
import matplotlib.gridspec as gs
我看到matplotlib版本是1.2.1。
如果我help(gs)
,我会看到Gridspec课程。
但是以下代码
import matplotlib
import matplotlib.gridspec as gs
g = gs.Gridspec(1,1)
产生错误:
AttributeError: 'module' object has no attribute 'Gridspec'
为什么我不能创建新的Gridspec对象?
答案 0 :(得分:4)
您打算输入g = gs.GridSpec(1,1)
。 “Spec”中的“s”是大写的。