相关:What is the common header format of Python files?
我在哪里可以找到Python中常用的所有双下划线变量/关键字的列表?
在Python中,以双下划线开头和结尾的变量通常用于存储元数据或内置到系统中。例如,
#!/usr/bin/env python
__author__ = 'Michael0x2a'
__license__ = 'GPL'
class Test(object):
def __init__(self):
print 'Hello World!'
if __name__ == '__main__':
t = Test()
我很确定__author__
和__license__
非常有名。还有哪些双下划线元数据变量?有一个全面的清单,我可以检查一下吗?我可以自己编造,或者是否有一些已经成为我应该使用的事实标准?
__init__
,__name__
和__doc__
等内容几乎都内置于Python中。那些只是两个保留的双下划线关键字吗?还有吗?在某些地方我可以获得一份清单吗?
答案 0 :(得分:26)
如果您想查看是否记录了魔术名称,请转到Lib目录并运行:
egrep -oh '__[A-Za-z_][A-Za-z_0-9]*__' *.py | sort | uniq
产生:
'__all__'
'__args__'
'__author__'
'__bases__'
'__builtin__'
'__builtins__'
'__cached__'
'__call__'
'__class__'
'__copy__'
'__credits__'
'__date__'
'__decimal_context__'
'__deepcopy__'
'__dict__'
'__doc__'
'__exception__'
'__file__'
'__flags__'
'__ge__'
'__getinitargs__'
'__getstate__'
'__gt__'
'__import__'
'__importer__'
'__init__'
'__ispkg__'
'__iter__'
'__le__'
'__len__'
'__loader__'
'__lt__'
'__main__'
'__module__'
'__mro__'
'__name__'
'__package__'
'__path__'
'__pkgdir__'
'__return__'
'__safe_for_unpickling__'
'__setstate__'
'__slots__'
'__temp__'
'__test__'
'__version__'
答案 1 :(得分:12)
Python使用的完整列表在Python Language Reference section 3, "Data model"中给出。每一个都是非标准的或由第三方模块使用,并单独记录。
答案 2 :(得分:1)
当我使用
dir(object)
我得到了这些:
'__class__', '__delattr__', '__dir__', '__doc__', '__eq__', '__format__', '__ge__', '__getattribute__', '__gt__', '__has
h__', '__init__', '__init_subclass__', '__le__', '__lt__', '__ne__', '__new__', '__reduce__', '__reduce_ex__', '__repr__'
, '__setattr__', '__sizeof__', '__str__', '__subclasshook__'
而且我认为它们是每个对象在python中都会使用的简明名称
答案 3 :(得分:0)
这里有我想要的关于雷声及其用途的详尽列表:magicmethods