关于python:如何将大写字母转换为小写字母

How to convert upper case letters to lower case

本问题已经有最佳答案,请猛点这里访问。

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

这就是我得到的

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


您可以在5.6.1节中找到更多与Python字符串相关的方法和函数。文档的字符串方法。

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

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


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

1
list.append(sentence.lower())

我在搜索"python从上到下的大小写"后的第一个结果中发现了这个问题。