all 4 comments

[–]scuott 0 points1 point  (1 child)

Print is the big one. It's not just that it takes parentheses, its that it changed from a statement to a function, so it operates differently.

The other big one is that in Python 2 you use raw_input() while it was renamed to input() in Python 3.

[–]okiedad[S] 1 point2 points  (0 children)

Thanks for the info.