Skip to content

Commit 33a6582

Browse files
HsuChihweiegonSchiele
authored andcommitted
change print to python3 (egonSchiele#95)
1 parent 8a0a191 commit 33a6582

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

06_breadth-first_search/python/01_breadth-first_search.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ def search(name):
2323
# Only search this person if you haven't already searched them.
2424
if person not in searched:
2525
if person_is_seller(person):
26-
print person + " is a mango seller!"
26+
print(person + " is a mango seller!")
2727
return True
2828
else:
2929
search_queue += graph[person]

0 commit comments

Comments
 (0)