709. 转换成小写字母
实现函数 ToLowerCase(),该函数接收一个字符串参数 str,并将该字符串中的大写字母转换成小写字母,之后返回新的字符串。
例如
输入: “Hello”
输出: “hello”
例如
输入: “here”
输出: “here”
例如
输入: “LOVELY”
输出: “lovely”
思考
按照题意操作就可以了。
class Solution(object):
def toLowerCase(self, str):
"""
:type str: str
:rtype: str
"""
resu = ""
for i in str:
if not i.islower():
i = i.lower()
resu += i
return resu
结果:
执行用时 : 24 ms, 在To Lower Case的Python提交中击败了86.17% 的用户
内存消耗 : 11.7 MB, 在To Lower Case的Python提交中击败了28.09% 的用户
提交时间 | 状态 | 执行用时 | 内存消耗 | 语言 |
几秒前 | 通过 | 24 ms | 11.7MB | python |
class Solution(object):
def toLowerCase(self, str):
"""
:type str: str
:rtype: str
"""
return str.lower()
结果:
执行用时 : 16 ms, 在To Lower Case的Python提交中击败了99.21% 的用户
内存消耗 : 11.9 MB, 在To Lower Case的Python提交中击败了5.06% 的用户
提交时间 | 状态 | 执行用时 | 内存消耗 | 语言 |
几秒前 | 通过 | 16 ms | 11.9MB | python |