Try this:
>>> print "Hello World!"
File "", line 1
print "Hello World!"
SyntaxError: invalid syntax
>>> print("Hello World!")
Hello World!
Python 3.X changed how print works, and now requires parentheses around the arguments.
Check out the python docs for more.