When I try to use a print statement in Python, it gives me this error:
print
>>> print \"Hello, World!\" File \"\", line 1
In Python 3, you can only print as:
print("STRING")
But in Python 2, the parentheses are not necessary.