0

我正在学习 python,但是当我看到以下划线开头的函数或变量时,我会感到困惑,例如:

__getAttributes__ __dict

如何找到以双下划线开头的所有功能和属性?能更好地理解它们吗?

4

1 回答 1

4

使用dir内置功能。它返回给定对象中所有属性和方法的列表。这也是快速发现功能或调用方法名称的好方法。例子:

print dir("this is a string")

['__add__', '__class__', '__contains__', '__delattr__', '__doc__', '__eq__', '__
format__', '__ge__', '__getattribute__', '__getitem__', '__getnewargs__', '__get
slice__', '__gt__', '__hash__', '__init__', '__le__', '__len__', '__lt__', '__mo
d__', '__mul__', '__ne__', '__new__', '__reduce__', '__reduce_ex__', '__repr__',
 '__rmod__', '__rmul__', '__setattr__', '__sizeof__', '__str__', '__subclasshook
__', '_formatter_field_name_split', '_formatter_parser', 'capitalize', 'center',
 'count', 'decode', 'encode', 'endswith', 'expandtabs', 'find', 'format', 'index
', 'isalnum', 'isalpha', 'isdigit', 'islower', 'isspace', 'istitle', 'isupper',
'join', 'ljust', 'lower', 'lstrip', 'partition', 'replace', 'rfind', 'rindex', '
rjust', 'rpartition', 'rsplit', 'rstrip', 'split', 'splitlines', 'startswith', '
strip', 'swapcase', 'title', 'translate', 'upper', 'zfill']

这些方法通常由内置函数或运算符使用。例如__eq__,测试两个对象是否相等,并被所有需要比较值的运算符和函数使用。

这些“魔术方法”有很多文章和指南,例如http://www.rafekettler.com/magicmethods.html

编辑:还可以查看有关这些方法的重要官方文档 评论。他们很好地概述了所有可用的内容。

于 2012-11-22T02:35:45.650 回答