From f1ee8fa1ec0d51386e3b1def9f168b76158b686d Mon Sep 17 00:00:00 2001 From: rasbt Date: Sat, 24 May 2014 12:06:51 -0400 Subject: [PATCH] html version --- .../key_differences_between_python_2_and_3.html | 17 +++++++++++------ .../key_differences_between_python_2_and_3.md | 5 +++++ 2 files changed, 16 insertions(+), 6 deletions(-) diff --git a/tutorials/key_differences_between_python_2_and_3.html b/tutorials/key_differences_between_python_2_and_3.html index 431d7c9..34cc83a 100644 --- a/tutorials/key_differences_between_python_2_and_3.html +++ b/tutorials/key_differences_between_python_2_and_3.html @@ -171,12 +171,17 @@ last updated: 05/24/2014


-

There are some good articles already that are summarizing the differences between Python 2 and 3, e.g.,
-- https://wiki.python.org/moin/Python2orPython3 -- https://docs.python.org/3.0/whatsnew/3.0.html -- http://python3porting.com/differences.html -- https://docs.python.org/3/howto/pyporting.html
-etc.

+

There are some good articles already that are summarizing the differences between Python 2 and 3, e.g.,

+ + + + +

etc.

But it might be still worthwhile, especially for Python newcomers, to take a look at some of those! (Note: the the code was executed in Python 3.4.0 and Python 2.7.5 and copied from interactive shell sessions.)

diff --git a/tutorials/key_differences_between_python_2_and_3.md b/tutorials/key_differences_between_python_2_and_3.md index d7a7d78..972e667 100644 --- a/tutorials/key_differences_between_python_2_and_3.md +++ b/tutorials/key_differences_between_python_2_and_3.md @@ -13,10 +13,15 @@ last updated: 05/24/2014
There are some good articles already that are summarizing the differences between Python 2 and 3, e.g., + - [https://wiki.python.org/moin/Python2orPython3](https://wiki.python.org/moin/Python2orPython3) + - [https://docs.python.org/3.0/whatsnew/3.0.html](https://docs.python.org/3.0/whatsnew/3.0.html) + - [http://python3porting.com/differences.html](http://python3porting.com/differences.html) + - [https://docs.python.org/3/howto/pyporting.html](https://docs.python.org/3/howto/pyporting.html) + etc. But it might be still worthwhile, especially for Python newcomers, to take a look at some of those!