We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8a0a191 commit 33a6582Copy full SHA for 33a6582
06_breadth-first_search/python/01_breadth-first_search.py
@@ -23,7 +23,7 @@ def search(name):
23
# Only search this person if you haven't already searched them.
24
if person not in searched:
25
if person_is_seller(person):
26
- print person + " is a mango seller!"
+ print(person + " is a mango seller!")
27
return True
28
else:
29
search_queue += graph[person]
0 commit comments