要导入别的目录下的py文件,可以使用相对路径或绝对路径来导入。
使用相对路径导入:
from ..other_directory import other_module
使用绝对路径导入:
import sys
sys.path.append('/path/to/other_directory')
import other_module
在以上示例中,..
表示上一级目录,other_directory
是要导入的目录名,other_module
是要导入的py文件名。在使用绝对路径导入时,需要将要导入的目录路径添加到 sys.path
中,然后再导入相应的py文件。