anyprint
anyprint copied to clipboard
I need Python2's print support on Python3
Ironically, what I miss most from Python is Python2's print, which for a language proud of getting rid of parenthesis, that is very contradictory....
Wouldn't this require some sort of adjacency operator that could be overloaded? I'm not 100% sure, but I don't see anything like this documented in Python.
I don't think there's a way to do this without preprocessing imported modules (like the from __ past__ import print_statement method).