一尘不染

如何在Python中小写字符串?

python

有没有一种方法可以将字符串从大写,甚至部分大写转换为小写?

例如,“公里”→“公里”。


阅读 368

收藏
2020-02-19

共1个答案

一尘不染

用途.lower()-例如:

s = "Kilometer"
print(s.lower())

官方2.x文档在这里: 官方3.x文档在这里:str.lower()](https://docs.python.org/2/library/stdtypes.html?highlight=str.lower#str.lower) [str.lower()

2020-02-19