Python has package named ast
, I want to import it, but I also have same name called ast
, pycharm
also show me local ast reference.
From docs
python3 use absolute import, so
import ast
should import python standard library
How to import python standard lib without renaming my ast file?
I am using Python 3.7