美文网首页
Python魔法方法- __module__

Python魔法方法- __module__

作者: 莫忘初心_倒霉熊 | 来源:发表于2020-02-19 16:08 被阅读0次

    __module__

    表示当前操作的对象在哪个模块

    # 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