__module__
表示当前操作的对象在哪个模块
# test.py
class Person:
def __init__(self):
self.name="laowang"
# main.py
from test import Person
obj=Person()
print(obj.__module__) # test
表示当前操作的对象在哪个模块
# test.py
class Person:
def __init__(self):
self.name="laowang"
# main.py
from test import Person
obj=Person()
print(obj.__module__) # test
本文标题:Python魔法方法- __module__
本文链接:https://www.haomeiwen.com/subject/hyvafhtx.html
网友评论