The print used to be a statement in Python 2, but now it became a function that requires parenthesis in Python 3.
print
Is there anyway to suppress these par
You can't, because the only way you could do it without parentheses is having it be a keyword, like in Python 2. You can't manually define a keyword, so no.