13

Some python 3 features and modules having been backported to python 2.7 what are the notable differences between python 3.1 and python 2.7?

simha
  • 869
  • 1
  • 8
  • 12

2 Answers2

9

I think these resources might help you:

And as you said

Some python 3 features and modules having been backported to python 2.7

... I would invert that sentence and say only few packages yet have been ported from Python 2.x to 3.x. Great libraries like PyGTK still only work in Python 2. Migration can take a while in many projects so before you decide to use Python 3 you may rather think about writing your own projects in Python 2, while ensuring compatibility by testing with 2to3 regularly.

AndiDog
  • 68,631
  • 21
  • 159
  • 205
0

If you want to use any of the python 3 function in python 2.7 then you can import future module at the beginning and then you can use it in your code.

sumitroy
  • 448
  • 9
  • 20