What does “SyntaxError: Missing parentheses in call to 'print'” mean in Python?

The name of the pictureThe name of the pictureThe name of the pictureClash Royale CLAN TAG#URR8PPP

What does “SyntaxError: Missing parentheses in call to 'print'” mean in Python?



When I try to use a print statement in Python, it gives me this error:


print


>>> print "Hello, World!"
File "<stdin>", line 1
print "Hello, World!"
^
SyntaxError: Missing parentheses in call to 'print'



What does that mean?




6 Answers
6



This error message means that you are attempting to use Python 3 to follow an example or run a program that uses the Python 2 print statement:


print




print "Hello, World!"





The statement above does not work in Python 3. In Python 3 you need to add parentheses around the value to be printed:


print("Hello, World!")



“SyntaxError: Missing parentheses in call to 'print'” is a new error message that was added in Python 3.4.2 primarily to help users that are trying to follow a Python 2 tutorial while running Python 3.



In Python 3, printing values changed from being a distinct statement to being an ordinary function call, so it now needs parentheses:


>>> print("Hello, World!")
Hello, World!



In earlier versions of Python 3, the interpreter just reports a generic syntax error, without providing any useful hints as to what might be going wrong:


>>> print "Hello, World!"
File "<stdin>", line 1
print "Hello, World!"
^
SyntaxError: invalid syntax



As for why print became an ordinary function in Python 3, that didn't relate to the basic form of the statement, but rather to how you did more complicated things like printing multiple items to stderr with a trailing space rather than ending the line.


print



In Python 2:


>>> import sys
>>> print >> sys.stderr, 1, 2, 3,; print >> sys.stderr, 4, 5, 6
1 2 3 4 5 6



In Python 3:


>>> import sys
>>> print(1, 2, 3, file=sys.stderr, end=" "); print(4, 5, 6, file=sys.stderr)
1 2 3 4 5 6



Starting with the Python 3.6.3 release in September 2017, some error messages related to the Python 2.x print syntax have been updated to recommend their Python 3.x counterparts:


>>> print "Hello!"
File "<stdin>", line 1
print "Hello!"
^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print("Hello!")?



Since the "Missing parentheses in call to print" case is a compile time syntax error and hence has access to the raw source code, it's able to include the full text on the rest of the line in the suggested replacement. However, it doesn't currently try to work out the appropriate quotes to place around that expression (that's not impossible, just sufficiently complicated that it hasn't been done).



The TypeError raised for the right shift operator has also been customised:


TypeError


>>> print >> sys.stderr
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
TypeError: unsupported operand type(s) for >>: 'builtin_function_or_method' and '_io.TextIOWrapper'. Did you mean "print(<message>, file=<output_stream>)"?



Since this error is raised when the code runs, rather than when it is compiled, it doesn't have access to the raw source code, and hence uses meta-variables (<message> and <output_stream>) in the suggested replacement expression instead of whatever the user actually typed. Unlike the syntax error case, it's straightforward to place quotes around the Python expression in the custom right shift error message.


<message>


<output_stream>





My thanks to @antti-haapala for adding the summary at the top that directly answers the question before continuing on to the longer explanation of the origins of the error message :)
– ncoghlan
May 11 '15 at 4:33





I also switched the answer to community wiki, as steadily accumulating further SO rep for this doesn't feel right to me (see bugs.python.org/issue21669 for the background on how the error message and this SO question co-evolved)
– ncoghlan
May 13 '15 at 2:13






@StuartJeckel Single vs double quotes shouldn't make a difference as long as they're paired up correctly, but there are a range of syntax errors that can be triggered by mismatched quote markers.
– ncoghlan
Dec 9 '15 at 7:51





Hello! I think this tool can help someone docs.python.org/2/library/2to3.html
– Jhonatas Kleinkauff
Jun 7 '16 at 22:58





Add the line from future import print_function in your 2.7 file to add new python 3 print() lines to your code. Hence the code becomes compatible to 2.7+ and 3.0+
– Ralf
Oct 24 '16 at 11:20



There is a change in syntax from Python 2 to Python 3.
In Python 2,


print "Hello, World!" will work but



In Python 3, use braces as


print("Hello, World!")



This is equivalent syntax to Scala and near to Java.



Unfortunately, the old xkcd comic isn't completely up to date anymore.



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



Since Python 3.0 you have to write:


print("Hello, World!")



And someone has still to write that antigravity library :(


antigravity





antigravity is there though ... have you tried importing it? ;)
– tyrion
Feb 18 at 9:58





AntiGravity Easter Egg
– jpaugh
May 7 at 21:56



In Python 3, you can only print as:


print("STRING")



But in Python 2, the parentheses are not necessary.



If your code should work in both Python 2 and 3, you can achieve this by loading this at the beginning of your program:


from __future__ import print_function # If code has to work in Python 2 and 3!



Then you can print in the Python 3 way:


print("python")



If you want to print something without creating a new line - you can do this:


for number in range(0, 10):
print(number, end=', ')



Outside of the direct answers here, one should note the other key difference between python 2 and 3. The official python wiki goes into almost all of the major differences and focuses on when you should use either of the versions. This blog post also does a fine job of explaining the current python universe and the somehow unsolved puzzle of moving to python 3.



As far as I can tell, you are beginning to learn the python language. You should consider the aforementioned articles before you continue down the python 3 route. Not only will you have to change some of your syntax, you will also need to think about which packages will be available to you (an advantage of python 2) and potential optimizations that could be made in your code (an advantage of python 3).




Thank you for your interest in this question.
Because it has attracted low-quality or spam answers that had to be removed, posting an answer now requires 10 reputation on this site (the association bonus does not count).



Would you like to answer one of these unanswered questions instead?

Comments

Popular posts from this blog

Executable numpy error

PySpark count values by condition

Trying to Print Gridster Items to PDF without overlapping contents