to_lower_case
to_lower_case.py 源码
# 转换成小写字母
class Solution:
def toLowerCase(self, str: str) -> str:
res = ''
for c in str:
if 65 <= ord(c) <= 90:
res += chr(ord(c) + 32)
else:
res += c
return res
你可能感兴趣的文章
0
赞
热门推荐
-
2、 - 优质文章
-
3、 gate.io
-
8、 golang
-
9、 openharmony
-
10、 Vue中input框自动聚焦