Python 3.0 is out

- python

Python 3.0 is here.

Guido and others released Python 3.0, a major “backward” incompatible python release.

It was a necessary choice to remove many old libraries, rework the std library, and change some behaviour.

You can see it all in What’s new in Python 3.0.

becomes

print("toto")

A 2to3 migration module could help you for this transition.