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

31 浏览
0 Comments

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

这个问题已经在这里有了答案

如何在Python中将字符串转换为小写?

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

这就是我得到的

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

admin 更改状态以发布 2023年5月21日
0
0 Comments

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

0
0 Comments

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

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

0