如何将大写字母转换为小写字母

时间:2011-10-22 19:21:14

标签: python

我有一个读取输入的脚本而不是列出它,但我希望它将大写字母转换为小写字母,我该怎么做?

这就是我得到的

 for words in text.readlines():
    sentence = [w.strip(',.') for w in line.split() if w.strip(',.')]
    list.append(sentence)

3 个答案:

答案 0 :(得分:117)

您可以在文档的5.6.1. String Methods部分找到与Python字符串相关的更多方法和函数。

w.strip(',.').lower()

答案 1 :(得分:23)

str.lower()将所有套接字符转换为小写字母。

答案 2 :(得分:4)

要在Python中将字符串转换为小写,请使用类似的内容。

list.append(sentence.lower())

我在搜索“python upper to lower case”之后的第一个结果中找到了这个。