字符大小写转换Python,python字母大小写转换函数
Python字符串是用内置的str类来表示的,那么str类包含了哪些方法呢?Python很方便。它甚至不需要用户查询文档。Python自带文档。
这里,要求读者简单掌握两个帮助功能:
Dir():列出所有内容(包括函数、方法、类、变量等。)包含在指定的类或模块中。
Help():查看函数或方法的帮助文档。
例如,要查看str类中包含的所有内容,可以在交互式解释器中输入以下命令:
导演(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__ ,大写, casefold , center , count , encode , endswith , expandtabs , find ,
格式,格式_映射,索引, 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 , split lines , starts with , strip , swapcase , title , translate , upper , zfill]上面列出了str类提供的所有方法,其中以“_”开头,以“_”结尾的方法都约定为私有方法,[
如果你想查看一个方法的用法,你可以使用help()函数。例如,在交互式解释器中输入以下命令:
帮助(字符串标题)
Helponmethod_descriptor:
标题(.)
s . title()-字符串
ReturnatitlecasedversionofS,即i.e.wordsstartwithtitlecase
字符,全部保留大小写字符大小写。从上面的介绍可以看出,str类的title()方法的作用是将每个单词的首字母大写,其他字母保持不变。
str类中与case相关的常用方法如下:
Title():将每个单词的首字母改为大写。
Lower():将整个字符串改为小写。
Upper():将整个字符串改为大写。
例如,如果您想查看lower()方法的相关用法,可以运行以下命令:
帮助(字符串下)
Helponmethod_descriptor:
较低(.)
s . low()-str
returncopyoftstringscovertedtolowercase。下面的代码演示了str的常见大小写相关方法:
a= ourdomainiscrazyit.org
#每个单词的第一个字母大写
打印(a.title())
#字符串中的所有字符都是小写的
print(a.lower())
#字符串中的所有字符都大写
Print(a.upper())运行上面的程序,可以看到下面的输出结果:
我们的域名疯狂。(同organic)有机
ourdomainiscrazyit.org
我们的域名疯狂。(同organic)有机
郑重声明:本文由网友发布,不代表盛行IT的观点,版权归原作者所有,仅为传播更多信息之目的,如有侵权请联系,我们将第一时间修改或删除,多谢。