better way to invert case of string

后端 未结 7 799
迷失自我
迷失自我 2020-12-07 00:43

I am learning python and meet an exercise:

Strings. Create a function that will return another string similar to the input string, but with its case i

7条回答
  •  刺人心
    刺人心 (楼主)
    2020-12-07 01:24

    Simply use the swapcase() method :

    name = "Mr.Ed"
    name = name.swapcase()
    

    Output : mR.eD

    -> This is just a two line code.

    Explanation :
    The method swapcase() returns a copy of the string in which all the case-based characters have had their case swapped.

    Happy Coding!

提交回复
热议问题