diff options
author | Levi Bostian <levi.bostian@gmail.com> | 2015-10-14 09:42:29 -0500 |
---|---|---|
committer | Levi Bostian <levi.bostian@gmail.com> | 2015-10-14 09:42:29 -0500 |
commit | 50ef362a83a8d952071f490ce60b78677973cd71 (patch) | |
tree | caa717cfd9300362de01a106e684d1c0a7ec6bf7 | |
parent | cbba48ec1ea8fc6250b49d654ad928ea766a2146 (diff) | |
parent | c05400477b05eb2f5f9ef7fb2d168c84e14fc26e (diff) |
Merge pull request #1503 from Carreau/patch-2
Update Python 2 vs Python 3
-rw-r--r-- | python.html.markdown | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/python.html.markdown b/python.html.markdown index 5b36083d..57a4d0d6 100644 --- a/python.html.markdown +++ b/python.html.markdown @@ -14,7 +14,13 @@ executable pseudocode. Feedback would be highly appreciated! You can reach me at [@louiedinh](http://twitter.com/louiedinh) or louiedinh [at] [google's email service] Note: This article applies to Python 2.7 specifically, but should be applicable -to Python 2.x. For Python 3.x, take a look at the [Python 3 tutorial](http://learnxinyminutes.com/docs/python3/). +to Python 2.x. Python 2.7 is reachong end of life and will stop beeign maintained in 2020, +it is though recommended to start learnign Python with Python 3. +For Python 3.x, take a look at the [Python 3 tutorial](http://learnxinyminutes.com/docs/python3/). + +It is also possible to write Python code which is compatible with Python 2.7 and 3.x at the same time, +using Python [`__future__` imports](https://docs.python.org/2/library/__future__.html). `__future__` imports +allow you to write Python 3 code that will run on Python 2, so check out the Python 3 tutorial. ```python |