better way to invert case of string

后端 未结 7 758
迷失自我
迷失自我 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:36

    You can do that with name.swapcase(). Lookup the string methods.

    0 讨论(0)
提交回复
热议问题