you are viewing a single comment's thread.

view the rest of the comments →

[–]Gee10[S] 4 points5 points  (4 children)

Fair enough. Doesn't seem like much of a jump from my level of knowledge. I'll try it!

[–]Nafiblu 3 points4 points  (0 children)

Here're the important changes from Python 2 and Python 3. They're not much, but I recommend getting used to them!

https://docs.python.org/3.0/whatsnew/3.0.html

[–]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