Python Forum

Full Version: Differences between Python 3.5 & Python 3.6
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hello!
I heard that there is the differences between Python 2 and Python 3.
And now I really wonder about the differences between python 3.5 and python 3.6.
Is there any difference? Or that just an improvement of Python 3 ?
python2.x will most likely be dead in 2020. most notibably will be the print statment VS print function of py3. More info here
http://sebastianraschka.com/Articles/201..._diff.html

However python3.6 has some major changes from 3.5 most notably the f-strings, annotations, underscore numbers, etc. A full list here
https://docs.python.org/3/whatsnew/3.6.html
(Dec-19-2017, 02:38 PM)metulburr Wrote: [ -> ]python2.x will most likely be dead in 2020. most notibably will be the print statment VS print function of py3. More info here
http://sebastianraschka.com/Articles/201..._diff.html

However python3.6 has some major changes from 3.5 most notably the f-strings, annotations, underscore numbers, etc. A full list here
https://docs.python.org/3/whatsnew/3.6.html

Thank you a lot! Smile Smile

(Dec-19-2017, 02:26 PM)sparkz_alot Wrote: [ -> ]Check here: https://docs.python.org/3/contents.html

Thank you, Sparkz_alot.
The difference between 3.5. and 3.6 is huge. The almost biggest change is the Dictionary. This data type has been optimized in size, speed and accidentally the order is preserved. Mostly everything in Python is based on Dictionaries.