码迷,mamicode.com
首页 > 其他好文 > 详细

LeetCode 709 To Lower Case 解题报告

时间:2019-01-01 21:02:15      阅读:204      评论:0      收藏:0      [点我收藏+]

标签:python   returns   class   for   判断   要求   ring   字符串   字符   

题目要求

Implement function ToLowerCase() that has a string parameter str, and returns the same string in lowercase.

题目分析及思路

题目要求返回一个字符串的小写形式。可以直接使用lower()函数。?如果考虑具体的实现逻辑,则将大写字符转成小写字符即可,判断字符是否处在‘A’~‘Z’之间,如果是的话,就把它转成小写字符。

python代码?

class Solution:

    def toLowerCase(self, str):

        """

        :type str: str

        :rtype: str

        """

        res = ""

        for s in str:

            if ord(s)>=ord(‘A‘) and ord(s)<=ord(‘Z‘):

                res += chr(ord(s)-ord(‘A‘)+ord(‘a‘))

            else:

                res += s

        return res

        

 

LeetCode 709 To Lower Case 解题报告

标签:python   returns   class   for   判断   要求   ring   字符串   字符   

原文地址:https://www.cnblogs.com/yao1996/p/10205676.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!