Error – SyntaxError: Missing parentheses in call to ‘print’
This is one of the most basic error you will get usually in Python, For Example, You wrote below Code and getting the error:
Hint:
The Hint is there in the Error Code itself .
“SyntaxError: Missing parentheses in call to ‘print’. Did you mean print(“Hi There”)?”
How to fix ?
Follow our Quick Guide to fix SyntaxError: Missing parentheses in call to ‘print’. Did you mean print(“Hi There”)?”
Solution:
Put Parentheses around the message you want to print . For Example refer Below:
Also Read : 20 Most asked Python Programming Examples