Python中 capitalize() 函数的作用是把一个字符串的首字符变为大写,其余字符变为小写,而本文要介绍的 casefold() 函数是把字符串中的所有字母都变成小写的形式。
且该函数仅对字符串对象起作用,而对非字符串对象无效。
该函数也会把非英文字母的大写形式变成其对应的小写形式
该函数的语法格式如下:
string_obj.casefold()
该函数执行完毕后,将返回一个新的字符串。
str1 = "Hello,WWW.Biye5u.COM"
str2 = str1.casefold()
print(str2)
输出:hello,www.VeVb.com
从结果中可以看出,该函数将字符串中的所有英文字母都变成了小写形式。
也可以像下面这种使用该函数:
s = "Hello,WWW.Biye5u.COM".casefold()
print(s)
输出:hello,www.VeVb.com
str1 = "Σ'αγΑΠώ." #意思是:我爱你.
str2 = str1.casefold()
print(str2)
输出:σ'αγαπώ.
从这里看出,Python中的 casefold() 函数对于非英文字母同样可以实现大小写转换。
str1 = "武林网VEVB的网址是:WWW.Biye5u.COM"
str2 = str1.casefold()
print(str2)
输出:武林网it乐园的网址是:www.VeVb.com
从这里可以看出,casefold()函数只将字母转换为小写,其余字符原样输出。
str1 = "我是一个流浪的程序员"
str2 = str1.casefold()
print(str2)
输出:我是一个流浪的程序员
str1 = ""
str2 = str1.casefold()
print(str2)
该程序可以正确执行,输出空行
s1 = None
print(s1.casefold()) #会发生错误
s2 = 12.34
print(s2.casefold()) #会产生错误
上面两个例子,python在执行时会报错,如下图所示:
即casefold()函数不能使用于非字符串对象。
新闻热点
疑难解答