当前位置 : 主页 > 编程语言 > python >

Python导入不同文件夹下模块

来源:互联网 收集:自由互联 发布时间:2022-07-17
import os.path as osp import sys def add_path(path): if path not in sys.path: sys.path.insert(0, path) this_dir = osp.dirname(__file__) path1 = osp.join(this_dir, '..', 'DATA') add_path(path1) 黄世宇/Shiyu Huang's Personal Page:​​h
import os.path as osp
import sys

def add_path(path):
if path not in sys.path:
sys.path.insert(0, path)

this_dir = osp.dirname(__file__)

path1 = osp.join(this_dir, '..', 'DATA')
add_path(path1)

 

黄世宇/Shiyu Huang's Personal Page:​​https://huangshiyu13.github.io/​​



上一篇:Python之图片格式转换
下一篇:没有了
网友评论