docs: convert `print` statement to function (#988)

Thank you for opening a Pull Request! Before submitting your PR, there are a few things you can do to make sure it goes smoothly:
- [x] Make sure to open an issue as a [bug/issue](https://github.com/googleapis/google-api-python-client/issues/new/choose) before writing your code!  That way we can discuss the change, evaluate designs, and agree on the general idea
- [x] Ensure the tests and linter pass
- [x] Code coverage does not decrease (if any source code was changed)
- [x] Appropriate docs were updated (if necessary)

Fixes #987 🦕
diff --git a/docs/start.md b/docs/start.md
index 4caf706..2db95fa 100644
--- a/docs/start.md
+++ b/docs/start.md
@@ -98,7 +98,7 @@
 ```python
 import json
 ...
-print json.dumps(response, sort_keys=True, indent=4)
+print(json.dumps(response, sort_keys=True, indent=4))
 ```
 
 For example, if the printed JSON is the following: