“'模块'对象没有属性'Gridspec'”,尽管调用帮助(gridspec)揭示了Gridspec类

时间:2013-04-17 03:02:04

标签: python matplotlib

如果我运行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对象?

1 个答案:

答案 0 :(得分:4)

您打算输入g = gs.GridSpec(1,1)。 “Spec”中的“s”是大写的。