They've released an alpha release of python 3.0!! There are many changes that could take some time getting used too.
- There is no more print statememt
- There is a new nonlocal statement
- There is no more integer division (1/2 = 0.5; 1//2 = 0)
- xrange() is now range()
- map() and others return generators (don't work as expected)
- more...
Comment