Python3 lower()方法

Posted dillon-china

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python3 lower()方法相关的知识,希望对你有一定的参考价值。

描述

Python lower() 方法转换字符串中所有大写字符为小写。

语法

lower()方法语法:

str.lower()

参数

  • 无。

返回值

返回将字符串中所有大写字符转换为小写后生成的字符串。

实例

以下实例展示了lower()的使用方法:

1 #!/usr/bin/python3
2 
3 str = "Runoob EXAMPLE....WOW!!!"
4 
5 print( str.lower() )

以上实例输出结果如下:

runoob example....wow!!!

以上是关于Python3 lower()方法的主要内容,如果未能解决你的问题,请参考以下文章

Python lower()方法

学习笔记:python3,代码片段(2017)

scrapy主动退出爬虫的代码片段(python3)

scrapy按顺序启动多个爬虫代码片段(python3)

casefold()方法

python中string.casefold和string.lower区别