+ 6
The most common reason of an error in a Python program is when a certain statement is not in accordance with the prescribed usage. Such an error is called a syntax error. The Python interpreter immediately reports it, usually along with the reason. >>> print "hello" SyntaxError: Missing parentheses in call to 'print'. https://www.tutorialsteacher.com/python/error-types-in-python
3rd Jan 2022, 3:12 AM
NEZ
NEZ - avatar