1、模块导入
import 模块名 from 模块名 import 函数/类/变量
2.模块路径
import sys sys.path
3.模块重新导入
from imp import * import reload_test reload(reload_test) #重新加载模块
4.模块循环导入
# main.py from lib import lib1 def func1(): print("main.func1") lib1() def func2(): print("main.func1") func1() # lib.py from main import func2 def lib1(): func2() print("lib.lib1") def lib2(): func2()
原文地址:https://www.cnblogs.com/loser1949/p/9537306.html
时间: 2024-10-10 16:02:36