Python ImportError Exception
Example
An ImportError will occur when you try to import a non-existing part of a module:
from numpy import somethingstrange
Try it Yourself »
Definition and Usage
The ImportError exception occurs when you try to import a non-existing part of a module.