AttributeError,为什么?

时间:2012-01-04 03:29:56

标签: python

我正在编写一个解决tetravex的程序,但我遇到了这个错误:

AttributeError: 'list' object has no attribute 'PlacementList'.

我尝试了所有我知道的但不知道为什么我会收到这个错误。你能告诉我我做错了吗?

这是我的代码的粘贴条件链接:http://pastebin.com/d1WdbCUu

1 个答案:

答案 0 :(得分:2)

当您尝试获取列表的PlacementList属性时,会发生这种情况。

以下是示例:

>>> a = []
>>> a.PlacementList
Traceback (most recent call last):
  File "<pyshell#49>", line 1, in <module>
    a.PlacementList
AttributeError: 'list' object has no attribute 'PlacementList'

只需查找发生类似情况的代码 - 您尝试获取对象的PlacementList属性,该属性可以是list类型。