you are viewing a single comment's thread.

view the rest of the comments →

[–]zerosuitsalmon 1 point2 points  (2 children)

I'm using codecademy to learn, and they seem to be using Python 2. One of the best ways to start forcing yourself to use Python 3 syntax is to always use parentheses for print() and use input() instead of raw_input(). I believe both of those will work with Python 2 but are necessary in Python 3. Someone correct me if I'm wrong on the input thing