While running the above code if you are getting this “SyntaxError: Missing parentheses in call to 'print'” error it means that you are using Python 3 so if you do not want to get this error run this code in Python 2:
print "Hello, World!"
If you are using Python 3 you need to add parentheses around the value to be printed like mentioned in the following piece of code:-
print("Hello, World!")
Another reason why you are getting that error is that the print () statement is a function in Python 3 and greater versions so you need to put the parentheses while in Python 2 and lower versions it is just a statement so there is no need of parenthesis.
To know more about this you can have a look at the following video:-
If You want to learn python for data science visit this python course by Intellipaat.