导语:
本文主要介绍了关于python如何查看类的函数的相关知识,包括python中查看变量类型的函数,以及python怎么查看类的方法这些编程知识,希望对大家有参考作用。
Python非常方便,不需要用户查询文档,只要掌握以下两个辅助函数,就可以查看Python中的所有函数(方法)及其用法和功能:
dir():列出指定类或模块中包含的所有内容(包括函数、方法、类、变量等)。
help():查看某个函数或方法的帮助文档。
例如,要查看可以从字符串变量(类型为 str )调用的所有内容,请在交互式解释器中输入以下命令:
>>> dir(str)
['__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', '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']
>>>
上面列出了字符串类型(str)提供的所有方法。以“_”开头并以“_”结尾的方法约定为私有方法,不希望直接从外部调用。
如果要查看某个方法的用法,可以使用 help() 函数。例如,在交互式解释器中输入以下命令:
>>> help(str.title)
Help on method_descriptor:
title(...)
S.title() -> str
Return a titlecased version of S, i.e. words start with title case
characters, all remaining cased characters have lower case.
>>>
从上面的介绍可以看出,title()方法是以“str.title()”的形式使用的,它的作用是把字符串中所有单词的首字母大写,将其他所有字符改为小写。
通过使用 dir() 和 help() 函数,我们可以查看字符串变量可以调用的所有方法,包括它们的用法和功能。
本文为原创文章,版权归知行编程网所有,欢迎分享本文,转载请保留出处!
你可能也喜欢
- ♥ 如何在linux中查看python的安装路径09/04
- ♥ 如何打包python代码11/15
- ♥ 如何在 Python 中使用 Tkinter 制作时钟?12/09
- ♥ 如何在python中打印列表的最后几个元素09/16
- ♥ python函数的两个参数比较10/23
- ♥ python连接hive的包是什么12/16
内容反馈