如何在Python中将字符串中的所有大写字母转换为小写?

您可以使用lower()Python中的方法将字符串中的所有大写字母转换为小写。例如:

>>> ‘Jane Doe N.Y.’.lower()
jane doe n.y.