获取模块名称:x.__module__ vs x.__class__.__module__
我想获取Python对象所在的模块。两者
x.__module__
似乎都
x.__class__.__module__
有效。这些完全是多余的吗?有什么理由更喜欢其中一种吗?
I want to obtain the module from which a Python object is from. Both
x.__module__
and
x.__class__.__module__
seem to work. Are these completely redundant? Is there any reason to prefer one over another?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果
x
是一个类,那么x.__module__
和x.__class__.__module__
会给你不同的东西:对于一个没有定义的实例
__module__
直接使用类中的属性。我认为你需要清楚你真正想了解什么模块。如果它是包含类定义的模块,那么最好明确这一点,所以我会使用 x.__class__.__module__。实例通常不会记录创建它们的模块,因此 x.__module__ 可能会产生误导。
If
x
is a class thenx.__module__
andx.__class__.__module__
will give you different things:For an instance which doesn't define
__module__
directly the attribute from the class is used instead.I think you need to be clear what module you actually want to know about. If it is the module containing the class definition then it is best to be explicit about that, so I would use
x.__class__.__module__
. Instances don't generally record the module where they were created sox.__module__
may be misleading.