如何在Python中小写字符串?
有没有一种方法可以将字符串从大写,甚至部分大写转换为小写?
例如,“公里”→“公里”。
回答:
用途.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()
以上是 如何在Python中小写字符串? 的全部内容, 来源链接: utcz.com/qa/399559.html