标签:case import asc span ase 用户输入 print upper 用户
编写程序,用户输入一个字符串,将其中小写字母全部转换成大写字母,把大写字母全部转换成小写字母,其他字符不变输出。????????????????????????????????????????????????????????????????????????????????????????????????
注:string.ascii_lowercase 可用于返回所有小写字母,string.ascii_uppercase 可用于返回所有大写字母
import string str1 = input() for i in str1: if i in string.ascii_lowercase: print(i.upper(),end="") elif i in string.ascii_uppercase: print(i.lower(),end="") else: print(i,end="")
标签:case import asc span ase 用户输入 print upper 用户
原文地址:https://www.cnblogs.com/L-1008/p/12628498.html