Під час обходу графіка в Python, я отримую цю помилку:
"dict" об'єкт не має атрибута "has_key"
Ось мій код:
def find_path(graph, start, end, path=[]):
path = path + [start]
if start == end:
return path
if not graph.has_key(start):
return None
for node in graph[start]:
if node not in path:
newpath = find_path(graph, node, end, path)
if newpath: return newpath
return None
Код спрямований на пошук шляхів від одного вузла до іншого. Джерело коду: http://cs.mwsu.edu/~terry/courses/4883/lectures/graphs.html
Чому я отримую цю помилку і як я можу її виправити?
if not start in graph: