Explain syntax logical and runtime error in python
Answers
Answered by
0
Explanation:
Explain syntax logical and runtime error in python
Answered by
0
Answer:
Two types of errors can occur in Python: 1. Syntax errors – usually the easiest to spot, syntax errors occur when you make a typo. Not ending an if statement with the colon is an example of an syntax error, as is misspelling a Python keyword (e.g. using whille instead of while).
Similar questions