

InterviewSolution
Saved Bookmarks
1. |
Which of the following is not a standard exception in Python?(a) NameError(b) IOError(c) AssignmentError(d) ValueError |
Answer» Correct option is (c) AssignmentError To explain: NameError, IOError and ValueError are standard exceptions in Python whereas Assignment error is not a standard exception in Python. |
|