在text.py的class t:中如何引用sleeping.py的def a:
时间: 2024-05-05 15:20:36 浏览: 132
joel-hanson.github.io::sleeping_face:+ :man_technologist_light_skin_tone:
要在text.py的class t中引用sleeping.py的def a,需要在.py中导入sleeping.py模块,然后通过模块名访问a函数。可以使用以下代码实现:
```python
import sleeping
class t:
def some_method(self):
sleeping.a()
```
这样就可以在class t中调用sleeping.py中的a函数了。
阅读全文