Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm new to python and am currently lost as to why print is giving a syntax here. Hoping someone might be able to point me in the right direction. Thanks

Python 3.0.1 (r301:69561, Feb 13 2009, 20:04:18) [MSC v.1500 32 bit (Intel)] on
win32
Type "help", "copyright", "credits" or "license" for more information.
>>> print "hello World"
  File "<stdin>", line 1
    print "hello World"
                      ^
SyntaxError: invalid syntax
>>> exit()

Windows path is correctly pointing to the python directory.

share|improve this question

5 Answers

up vote 73 down vote accepted

In Python 3.0, print became a function. You need to include parenthesis now.

print("Hello World")

http://docs.python.org/3.0/whatsnew/3.0.html#print-is-a-function

share|improve this answer

It looks like you're using Python 3.0, in which print has turned into a callable function rather than a statment.

print('Hello world!')

http://docs.python.org/3.0/whatsnew/3.0.html#print-is-a-function

share|improve this answer

In Python 3.0, print is a regular function that requires ():

print("Hello world")
share|improve this answer

It looks like you're using Python 3. In Python 3, print has been changed to a method instead of a statement. Try this:

print("hello World")
share|improve this answer

In python 3, it's print("something") , not print "something"

share|improve this answer

protected by Gilles Jan 18 '12 at 20:35

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

Not the answer you're looking for? Browse other questions tagged or ask your own question.