Skip to content

Latest commit

 

History

History

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 

Readme.md

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