Is it normal for me to use parenthesis when making a call to print in Python 2.7? I thought only 3 onwards needs to do this?
without the parenthesis I get a syntax error.
SyntaxError: invalid syntax
but with parenthesis, it works.
I was under the assumption that 2.7 doesn't need parenthesis to print?