Python3 lower()方法

Python3 字符串 Python3 字符串


描述

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

语法

lower()方法语法:

str.lower()

参数

  • 无。

返回值

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

实例

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

#!/usr/bin/python3

str = "Zyiznt EXAMPLE....WOW!!!"

print( str.lower() )

以上实例输出结果如下:

Zyiznt example....wow!!!

Python3 字符串 Python3 字符串

上一篇:Python3 ljust()方法

下一篇:Python3 lstrip()方法

关注微信小程序
程序员编程王-随时随地学编程

扫描二维码
程序员编程王

扫一扫关注最新编程教程