有没有办法将字符串从大写,甚至部分大写转换为小写?

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

最佳答案

使用 .lower() - 例如:

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

官方 2.x 文档在这里: str.lower()
官方 3.x 文档在这里: str.lower()

关于python - 如何在 Python 中小写字符串?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/6797984/

10-12 15:12