better way to invert case of string

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

    #the following program is for toggle case
    name=input()
    for i in name:
        if i.isupper():
            print( i.lower(),sep='',end='')
        else:
            print( i.upper(),sep='',end='')
    

提交回复
热议问题