我是python的新手,我無法獲取下面類的實例,它位於名爲「util.py」的python文件中:在Python中使用「__init __(self)」方法獲取類的實例
...
class Stack:
def __init__(self):
self.list = []
...
而且我要建一個名爲「Search.py」另一個Python文件中的上述類的一個實例,下面的代碼:
def depthFirstSearch(problem):
from util import Stack
path = [] #list used to return the desired actions
DFSstack = Stack()
確實沒有什麼更多的在我的代碼相信我!:) 但我得到這個錯誤:TypeError:'NoneType'對象不可迭代
請幫幫我!
請發佈* full * traceback以及;在這段代碼中有* nothing *會拋出異常。 –
對於初學者,你並沒有重複任何事情。 –
讓我查看我的代碼 –