Added a quote from a great Python book author, Michael Dawson, on Why… (#28188)

* Added a quote from a great Python book author, Michael Dawson, on Why to choose Python

* fix: formatting/spelling
This commit is contained in:
Anatoly Makeyev
2018-12-11 17:20:35 +02:00
committed by Christopher McCormack
parent 52832fff90
commit 9443360a31

View File

@ -13,6 +13,13 @@ To learn more about Python, check out these pages on python.org:
<a href='https://docs.python.org/3/faq/general.html' target='_blank' rel='nofollow'>Python FAQ</a>. <a href='https://docs.python.org/3/faq/general.html' target='_blank' rel='nofollow'>Python FAQ</a>.
## Why Python?
> If you're new to programming, you've made the right choice. Python is the perfect beginners' language. It has a clear and simple syntax that will get you writing useful programs in short order. Python even has an interactive mode, which offers immediate feedback, allowing you to test out new ideas almost instantly.
If you've done some programming before, you've still made the right choice. Python has all the power and flexibility you'd expect from a modern, object-oriented programming language. But even with all of its power, you may be surprised how quickly you can build programs. In fact, ideas translate so quickly to the computer, Python has been called "programming at the speed of thought".
> - Michael Dawson
## Python 2 or Python 3
* The two versions are similar. With knowledge of one, switching to writing code for the other is easy. * The two versions are similar. With knowledge of one, switching to writing code for the other is easy.
* <a href='https://wiki.python.org/moin/Python2orPython3' target='_blank' rel='nofollow'>Python 2 or Python 3</a> * <a href='https://wiki.python.org/moin/Python2orPython3' target='_blank' rel='nofollow'>Python 2 or Python 3</a>