diff --git a/guide/english/python/index.md b/guide/english/python/index.md index fbd231a96a..81e7517dd5 100644 --- a/guide/english/python/index.md +++ b/guide/english/python/index.md @@ -85,8 +85,7 @@ Interactive mode has a prompt where Python commands can be entered and run: $ ## The Zen of Python - -Some of the principles that influenced the design of Python are included as an Easter egg and can be read by using the command inside Python interpreter interactive mode: +The principles that influenced the design of Python are included as an Easter egg, and can be read by using the following command inside the Python interpreter interactive mode: >>> import this The Zen of Python, by Tim Peters @@ -174,9 +173,7 @@ The `objects` parameter is prefixed with a `*`, which indicates that the functio As stated, python is a general purpose language. You can use it to do anything you like but one of the major uses of python is in machine learning and artificial intelligence. It is also a popular language in web development with some amazing frameworks like [Django](https://www.djangoproject.com/) and [flask](http://flask.pocoo.org/). It is also a popular scripting language. With its easy to read syntax it is becoming one the most popular programming languages growing rapidly in different fields. ## Want to learn more? - Free Code Camp has some great resources. The web is a big place, there's plenty more to explore: - * [Python Practice Book](http://anandology.com/python-practice-book/index.html) * [Think Python](http://greenteapress.com/thinkpython/html/index.html) * [Practical Business Python](http://pbpython.com/) @@ -193,3 +190,8 @@ Free Code Camp has some great resources. The web is a big place, there's plenty * [Introduction to Python Programming on Udacity](https://www.udacity.com/course/introduction-to-python--ud1110) * [Profiling in Python](https://docs.python.org/2/library/profile.html) * [Python for Everybody Specialization](https://www.coursera.org/specializations/python) + +## Additional Resources +* [Python2](https://docs.python.org/2/tutorial/) +* [Python3](https://docs.python.org/3/tutorial/) +* [Google's Python class](https://developers.google.com/edu/python/)