标签:... 大写 class usr tty 法语 结果 style 参数
Python lower() 方法转换字符串中所有大写字符为小写。
lower()方法语法:
str.lower()
返回将字符串中所有大写字符转换为小写后生成的字符串。
以下实例展示了lower()的使用方法:
1 #!/usr/bin/python3 2 3 str = "Runoob EXAMPLE....WOW!!!" 4 5 print( str.lower() )
以上实例输出结果如下:
runoob example....wow!!!
标签:... 大写 class usr tty 法语 结果 style 参数
原文地址:https://www.cnblogs.com/dillon-china/p/9256905.html