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

我有一个脚本读取input,并列出它,但是我想它将大写字母转换为小写,我怎么能做到这一点?

这是我得到的

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

您可以在5.6.1节find更多与Pythonstring相关的方法和函数。 string文档的方法 。

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

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

要在Python中将string转换为小写,请使用类似这样的内容。

 list.append(sentence.lower()) 

在search“python upper to lower case”后,我在第一个结果中find了这个。