Hi Guys,
You might face an error like "SyntaxError: Missing parentheses in call to 'print'". This usually comes if you have print in your python script or statement . The solution is to replace the print with print() since the syntax is changed from python 3 onwards.
You might face an error like "SyntaxError: Missing parentheses in call to 'print'". This usually comes if you have print in your python script or statement . The solution is to replace the print with print() since the syntax is changed from python 3 onwards.