Y
Hacker News
new
|
ask
|
show
|
jobs
by
mahmoudhossam
4894 days ago
In 2.7, it does.
2 comments
buster
4894 days ago
Unfortunately not.. atleast not in my 2.7.3 prompt. Only with the __future__ import :(
link
jau
4894 days ago
In 2.6.6 also works.
link
ch0wn
4894 days ago
If you use print() in py2k, you're still using the print statement and group the argument in parentheses. It falls apart, if you try to use more than one argument, because it's interpreted as a tuple then.
Python3:
>>> print("hello", "world") hello world
Python2:
>>> print("hello", "world") ('hello', 'world')
link