python练习输入abcDEFABCdef
s=input() r='' for i in s: if i.islower(): r+=i.upper() if i.isupper(): r+=i.lower() print(r)