What type of error will be produced when you type? Result = “Python” + 10 Name the error and error message.
Answers
Answered by
3
Answer:
Until now error messages haven’t been more than mentioned, but if you have tried out the examples you have probably seen some. There are (at least) two distinguishable kinds of errors: syntax errors and exceptions.
Answered by
29
Answer:
Exception Description
- SyntaxError ↪Raised by the parser when a syntax error is encountered.
- IndentationError ↪Raised when there is an incorrect indentation.
- TabError Raised ↪when the indentation consists of inconsistent tabs and spaces.
- SystemError↪ Raised when the interpreter detects internal error.
Explanation:
Hope it helps you
Similar questions