标签: python-3.x python-import
我们如何从文件(例如,位于同一目录中)的python中的“ New File.py”文件中导入函数? 如果是“ This_thing.py”,那么我们只需输入
from This_thing.py import *fn_name*
从具有所述名称类型的文件中导入内容的格式是什么? TL; DR,
from New File.py import fn
不起作用。该怎么办?