Podczas przeglądania wykresu w Pythonie otrzymuję następujący błąd:
Obiekt „dict” nie ma atrybutu „has_key”
Oto mój kod:
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
Kod ma na celu znalezienie ścieżek z jednego węzła do drugiego. Źródło kodu: http://cs.mwsu.edu/~terry/courses/4883/lectures/graphs.html
Dlaczego otrzymuję ten błąd i jak mogę go naprawić?
if not start in graph: