在 Python 中,你可以使用内置的 dir()
函数来查看一个对象的所有属性和方法。dir()
函数会返回一个包含对象所有属性和方法名称的列表。
# 示例:查看字符串对象的所有属性和方法
s = "Hello, World!"
print(dir(s))
['__add__', '__class__', '__contains__', '__delattr__', '__dir__', '__doc__', '__eq__', '__format__', '__ge__', '__getattribute__', '__getitem__', '__getnewargs__', '__gt__', '__hash__', '__init__', '__init_subclass__', '__iter__', '__le__', '__len__', '__lt__', '__mod__', '__mul__', '__ne__', '__new__', '__reduce__', '__reduce_ex__', '__repr__', '__rmod__', '__rmul__', '__setattr__', '__sizeof__', '__str__', '__subclasshook__', 'capitalize', 'casefold', 'center', 'count', 'encode', 'endswith', 'expandtabs', 'find', 'format', 'format_map', 'index', 'isalnum', 'isalpha', 'isascii', 'isdecimal', 'isdigit', 'isidentifier', 'islower', 'isnumeric', 'isprintable', 'isspace', 'istitle', 'isupper', 'join', 'ljust', 'lower', 'lstrip', 'maketrans', 'partition', 'replace', 'rfind', 'rindex', 'rjust', 'rpartition', 'rsplit', 'rstrip', 'split', 'splitlines', 'startswith', 'strip', 'swapcase', 'title', 'translate', 'upper', 'zfill']
要查看某个属性或方法的完整文档,可以使用 help()
函数。help()
函数会显示对象的详细文档字符串(docstring)。
# 查看字符串的 `upper` 方法的文档
help(str.upper)
Help on method_descriptor:
upper(self, /)
Return a copy of the string converted to uppercase.
__doc__
属性你也可以直接访问对象的 __doc__
属性来查看文档字符串。
# 查看字符串的 `upper` 方法的文档字符串
print(str.upper.__doc__)
Return a copy of the string converted to uppercase.
dir()
函数可以查看对象的所有属性和方法。help()
函数可以查看某个属性或方法的详细文档。__doc__
属性可以直接访问对象的文档字符串。这些工具可以帮助你更好地理解 Python 中的数据类型及其功能。