I just installed 3.4 on a new machine, tried to run something I know works and it failed. I then tried to just type the following into IDLE and it failed:
>>> print 'hello'
SyntaxError: invalid syntax
>>> print hello
SyntaxError: invalid syntax
>>> print "hello"
SyntaxError: invalid syntax
>>>
I am confused as to why that would fail.