SyntaxError: Missing parentheses in call to 'print'
This is an annoying issue where the syntax between Python 2 and 3 changed which breaks old scripts. print "hello" #change to print("Hello, World!")
print "hello" #change to print("Hello, World!")
python, syntaxerror, parentheses, syntax, scripts, quot,