编程语言
首页 > 编程语言> > LeetCode算法刷题记录3

LeetCode算法刷题记录3

作者:互联网

每天一道题,offer自找你!

709.转换成小写字母

从今天起不做题目描述了。。

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

哎 一行代码,明天更各种大小写转换吧

标签:709,offer,小写字母,self,算法,str,LeetCode,刷题
来源: https://blog.csdn.net/qq_42216010/article/details/101122301