Python 字符串方法
小写字符串:
txt = "Hello my FRIENDS" x = txt.lower() print(x)
运行实例
lower() 方法返回一个字符串,其中所有字符均为小写。
符号和数字将被忽略。
string.lower()
无参数