Skip to content

Latest commit

 

History

History
31 lines (17 loc) · 390 Bytes

File metadata and controls

31 lines (17 loc) · 390 Bytes

ImportError: cannot import name '...' from '...'

Reproduce.py

from math import something

Error Message

ImportError: cannot import name 'something' from 'math'

Fix.py

from math import sqrt

Reflection

Tried to import something that doesn't exist.

Reference