In Python 2.7 both the following will do the same
print("Hello, world!") # Prints "Hello, world!"
print "Hello, world!" # Prints "Hello, world!"
However the following will not
print("Hello,", "world!") # Prints the tuple: ("Hello,", "world!")
print "Hello,", "world!" # Prints the words "Hello, world!"
In Python 3.x parenthesis on print is mandatory, essentially making it a function, but in 2.7 both will work with differing results. What else should I know about print in Python 2.7?
printis actually a special statement, not a function. This is also why it can't be used like:lambda x: print xNote that(expr)does not create a Tuple (it results inexpr), but,does. – user166390 May 31 '11 at 4:20from __future__ import print_function– Jeff Mercado May 31 '11 at 4:23