The print used to be a statement in Python 2, but now it became a function that requires parenthesis in Python 3.
Is there any way to suppress these parentheses in Python 3? Maybe by re-defining the print function?
So, instead of
print ("Hello stack over flowers")
I could type:
print "Hello stack over flowers"