change print to python3 (#95)

This commit is contained in:
Chihwei-Hsu
2018-12-29 00:25:31 +08:00
committed by Aditya Bhargava
parent 8a0a191975
commit 33a65829c0

View File

@@ -23,7 +23,7 @@ def search(name):
# Only search this person if you haven't already searched them.
if person not in searched:
if person_is_seller(person):
print person + " is a mango seller!"
print(person + " is a mango seller!")
return True
else:
search_queue += graph[person]