我是 python 新手,我想在这里理解一个基本错误。我在下面的代码中收到 TypeError: 'list' object is not callable 错误。有人可以解释一下我的代码有什么问题吗?
graph = {'a': ['b', 'c'], 'b': ['a', 'c'], 'c': ['b', 'd'], 'd': ['a'], 'e': ['a']}
def reachable(graph, node):
res = [node]
reachable = graph[node]
for currentnode in reachable:
if currentnode not in res :
reachableNodes = reachable(graph,currentnode) << TypeError:
for newNode in reachableNodes:
if newNode not in res :
res.append(newNode)
return res
错误:TypeError:“列表”对象不可调用错误