New to Python - learn 2.7 or 3.2?

Hey,

There’s also this page which shows the most basic features changed, in case you get stuck.

and this page which I find gives some valuable information on the future module.

And one of the biggest immediate failures IMO, is that print becomes a function instead of a statement.

print "Hello world!", 1, 2, 3

vs.

print("Hello world!", 1, 2, 3)

Have lots’o fun,
~powerpup118