html version

This commit is contained in:
rasbt 2014-05-24 12:06:51 -04:00
parent f81049e1ac
commit f1ee8fa1ec
2 changed files with 16 additions and 6 deletions

View File

@ -171,12 +171,17 @@ last updated: 05/24/2014</p>
<p><br></p>
<p>There are some good articles already that are summarizing the differences between Python 2 and 3, e.g.,<br/>
- <a href="https://wiki.python.org/moin/Python2orPython3">https://wiki.python.org/moin/Python2orPython3</a>
- <a href="https://docs.python.org/3.0/whatsnew/3.0.html">https://docs.python.org/3.0/whatsnew/3.0.html</a>
- <a href="http://python3porting.com/differences.html">http://python3porting.com/differences.html</a>
- <a href="https://docs.python.org/3/howto/pyporting.html">https://docs.python.org/3/howto/pyporting.html</a><br/>
etc.</p>
<p>There are some good articles already that are summarizing the differences between Python 2 and 3, e.g.,</p>
<ul>
<li><p><a href="https://wiki.python.org/moin/Python2orPython3">https://wiki.python.org/moin/Python2orPython3</a></p></li>
<li><p><a href="https://docs.python.org/3.0/whatsnew/3.0.html">https://docs.python.org/3.0/whatsnew/3.0.html</a></p></li>
<li><p><a href="http://python3porting.com/differences.html">http://python3porting.com/differences.html</a></p></li>
<li><p><a href="https://docs.python.org/3/howto/pyporting.html">https://docs.python.org/3/howto/pyporting.html</a></p></li>
</ul>
<p>etc.</p>
<p>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.)</p>

View File

@ -13,10 +13,15 @@ last updated: 05/24/2014
<br>
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!