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
No. That will always be a syntax error in Python 3. Consider using 2to3 to translate your code to Python 3
2to3