python,import a,在a里import time和自定义的模块import b,模块b中的函数c里如何引用time
时间: 2024-03-12 21:46:27 浏览: 85
Python import自定义模块方法
5星 · 资源好评率100%
在模块 b 中的函数 c 中,可以直接使用 `import time` 引用模块 time 中的函数和变量。如果你想要引用 a 中已经引入的 time 模块,可以通过 `import a` 来实现,然后在 c 中使用 `a.time` 来引用 a 中引入的 time 模块。例如:
```python
# a.py
import time
import b
# b.py
import time
def c():
# 引用 b 中的 time 模块
print(time.time())
# 引用 a 中的 time 模块
import a
print(a.time.time())
```
阅读全文