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

I am trying to learn Python, however I tried to run a script that is LITERALLY just:

print "Hello, World!"

And I get this error:

  File "hello.py", line 1
    print "Hello, World!"
                        ^
SyntaxError: invalid syntax

What is going on!?

share|improve this question
40  
I suspect this will become the most-frequently-asked Python question for the next couple of years. – Greg Hewgill Jul 3 '09 at 0:57
2  
Please post the results of python --version – S.Lott Jul 3 '09 at 1:06
4  
Just a thought: Python 3.0 should come with "Py3k warnings" on by default. Think of how many thousands of SO/newsgroup questions could be prevented by doing this. – RexE Jul 3 '09 at 1:59
1  
Damn! I missed answering this question. – Jungle Hunter Aug 12 '10 at 10:25
3  
First time I see somebody asking a question about how to implement "Hello World" in a language. Makes you wonder what that says about the language if that's causing people trouble already... (since it's usually given as the first code example in any introduction). – Peladao Dec 13 '11 at 21:07
show 1 more comment

4 Answers

up vote 47 down vote accepted
print("Hello, World!")

You are probably using Python 3.0, where print is now a function (hence the parenthesis) instead of a statement.

share|improve this answer
Thank you, this worked. I don't know why this isn't more common knowledge, because I just copy-pasted from the first Google result for Python Hello World. – MiffTheFox Jul 3 '09 at 0:29
1  
"requires parenthesis" is not really the adequate explanation as to the change from 2.x to 3 :) – Paolo Bergantino Jul 3 '09 at 0:29
9  
@MiffTheFox: Python 2.x uses print as a statement. The relatively new Python 3 made print a function instead. The majority of Python programmers are still using 2.x because of its extensive library and framework support, so 3.0 isn't nearly as adopted as you'd expect for now. – Paolo Bergantino Jul 3 '09 at 0:31
2  
@paulo, its the most succinct. If I had said, it is now a function, I would have to then explain what the difference between a statement and an expression is and how a function fits into the whole picture. – Unknown Jul 3 '09 at 0:34
2  
They should have a special error message for cases like this with a bit more explanation. With all the documentation out there for Python 2, this kind of incompatible syntax change is bound to frustrate the uninitiated a lot. – Thilo Jul 3 '09 at 1:06
show 3 more comments

Unfortunatly the xkcd commic isn't completely up to date anymore.

http://imgs.xkcd.com/comics/python.png

Since Python 3.0 you have to write:

print("Hello world!")

And someone still has to write that antigravity library :(

share|improve this answer
15  

If this works:

print("Hello, World")

You are using Python 3.x.

print "Hello, World!"

only works in Python 2.x

share|improve this answer
print ("Hello World!") 

with python 3.- or more

while True:
    print ("Hello World!") 

does a loop which constantly prints hello world

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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