I've just installed Python 3.1.3 and tried to run the most basic of prints from the Python Shell. Below is a c/p of the shell. I'm lost already. Why is that a syntax error? Judging by the stuff here it shouldn't be.
Python 3.1.3 (r313:86834, Nov 27 2010, 17:20:37) [MSC v.1500 64 bit (AMD64)] on win32
Type "copyright", "credits" or "license()" for more information.
>>> print "test"
SyntaxError: invalid syntax
>>> print 'test'
SyntaxError: invalid syntax
>>>