知行编程网知行编程网  2022-09-29 21:00 知行编程网 隐藏边栏  14 
文章评分 0 次,平均分 0.0
导语: 本文主要介绍了关于python如何查看类的函数的相关知识,包括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() 函数,我们可以查看字符串变量可以调用的所有方法,包括它们的用法和功能。

本文为原创文章,版权归所有,欢迎分享本文,转载请保留出处!

知行编程网
知行编程网 关注:1    粉丝:1
这个人很懒,什么都没写
扫一扫二维码分享