题解 | #字符串变形#

字符串变形

https://www.nowcoder.com/practice/c3120c1c1bc44ad986259c0cf0f0b80e

class Solution:
    def trans(self , s: str, n: int) -> str:
        # write code here
        lst = s.split(' ')
        lst = lst[::-1]
        res = []
        for word in lst:
            tmp = ''
            for c in word:
                if c.islower():
                    tmp += c.upper()
                elif c.isupper():
                    tmp += c.lower()
            res.append(tmp)
        return ' '.join(res)

全部评论

相关推荐

不愿透露姓名的神秘牛友
11-26 18:54
说等下个版本吧的发呆爱好者很贪睡:佬最后去了哪家呀
点赞 评论 收藏
分享
评论
4
收藏
分享
牛客网
牛客企业服务