709. 转换成小写字母

exiaohu 于 2021-12-12 发布

题目链接:709. 转换成小写字母

class Solution:
    def toLowerCase(self, s: str) -> str:
        return s.lower()