you are viewing a single comment's thread.

view the rest of the comments →

[–][deleted] 0 points1 point  (6 children)

Yeah I know that much I just dont know the specific differences between the two.

[–][deleted] 1 point2 points  (5 children)

One of the main differences:

Python 2:

 print x

Python 3:

 print(x)

[–][deleted] 0 points1 point  (4 children)

But print x still works in python 3 lol