在“ main.py”脚本中,我导入了两个不同的模块,称为“时间”和“ my_module”。 当我在“ my_module”中调用函数“ my_func1”时,它将尝试在“ time”模块中调用另一个函数。但是,“ my_module”无法访问“ time”模块中的功能,并出现以下错误:未定义全局名称“ time”。
main.py
import time
import my_module as M
M.my_func1()
my_module.py
def my_func0():
return time.clock()
def my_func1():
print(my_func0())
return