从不同的文件夹导入模块

从不同的文件夹导入模块,第1张

从不同的文件夹导入模块

当我在Python 2.7中执行此 *** 作时,我使用:

import syssys.path.append('C:/python/files/folder1')import aimport a1

更新

这是我将目录中的所有模块导入字典中的一种技巧:

import osimport sysdir_of_interest = 'C:/python/files/folder1'modules = {}sys.path.append(dir_of_interest)for module in os.listdir(dir_of_interest):    if '.py' in module and '.pyc' not in module:        current = module.replace('.py', '')        modules[current] = __import__(current)

我刚刚构建了它,但它非常hacky,但它可能更像您想要的东西。因此,访问您想要的模块,而不是说

module_name.thing
您会说
modules["module_name"].thing



欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5674427.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-12-17
下一篇 2022-12-17

发表评论

登录后才能评论

评论列表(0条)

保存