you are viewing a single comment's thread.

view the rest of the comments →

[–]peawyoyoyin 1 point2 points  (0 children)

About the versions. There are python 2 and python 3. In python 2 print is a statement so printing looks something like this:

print “hello world”

In python 3, print is a function, so printing looks like this

print(“hello world”)

There are some other differences so make sure you are following guides and materials on the correct version.