I learned that Python 3 print statements require parentheses, but I was told I could do:
from __past__ import print
but this doesn't seem to work. It gives me an error
SyntaxError: Missing parentheses in call to 'print'
Any idea what's wrong?
Full code:
from __past__ import print
print 'hello'