mirror of
https://github.com/adambard/learnxinyminutes-docs.git
synced 2024-12-23 17:41:41 +00:00
Update Python 2 vs Python 3
Add fact that Python 2 is reaching end of life. And note that you can use `__future__` to add Python 2 and 3 compatible code.
This commit is contained in:
parent
96bb814889
commit
c05400477b
@ -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]
|
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
|
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
|
```python
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user