我们学习了很多字符串变量提供的方法,比如split()、join()、find()、index()等,但这还远远不是它的所有方法。今天我就为大家罗列一些最常用的方法。
Python非常方便,不需要用户查询文档,只要掌握以下两个辅助函数,就可以查看Python中的所有函数(方法)及其用法和作用: dir(): 列出指定的类或模块包含的Everything (包括函数、方法、类、变量等)。 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() 函数,我们就可以查看字符串变量所能调用的所有方法,包括他们的使用方法和功能等。
本文为原创文章,版权归知行编程网所有,欢迎分享本文,转载请保留出处!
你可能也喜欢
- ♥ 如何使用python实现海龟绘制?09/06
- ♥ 学Python有钱途吗02/28
- ♥ 如何转换python字符串大小写11/26
- ♥ 如何在python中从堆中删除元素11/19
- ♥ 如何在python中生成唯一的随机数10/23
- ♥ 如何掌握python中weakref模块的用法?12/01
内容反馈