Skip to content
Snippets Groups Projects
Commit 9a3e73da authored by raila's avatar raila
Browse files

Make Python example output identical to C++ and Java by removing redundant

spaces.
parent 962a92fd
No related branches found
No related tags found
No related merge requests found
......@@ -15,11 +15,11 @@ def ListPeople(address_book):
for phone_number in person.phone:
if phone_number.type == addressbook_pb2.Person.MOBILE:
print " Mobile phone #: ",
print " Mobile phone #:",
elif phone_number.type == addressbook_pb2.Person.HOME:
print " Home phone #: ",
print " Home phone #:",
elif phone_number.type == addressbook_pb2.Person.WORK:
print " Work phone #: ",
print " Work phone #:",
print phone_number.number
# Main procedure: Reads the entire address book from a file and prints all
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment