发布网友 发布时间:2022-04-22 14:59
共3个回答
热心网友 时间:2023-11-09 22:55
def change(str1):
new_str = str()
for i in range(len(str1)):
if(65 <= ord(str1[i]) <= 90):
a = str1[i].lower()
print(a,end='')
elif(97 <= ord(str1[i]) <= 122):
a = str1[i].upper()
print(a,end='')
else:
a = str1[i]
print(a,end='')
return new_str
str2 = str(input("要转换的字符串:"))
print(change(str2))
热心网友 时间:2023-11-09 22:56
参考代码:
def change (str1):
t =""
for i inrange (len(str1)):
if str1[i].islower():
t +=str1[i].upper()
elif str1[i].isupper():
t +=str1[i].lower()
else :
t +=str1[i]
return t
热心网友 时间:2023-11-09 22:56
C++基础题,编写change()函数,并在主函数中测试,... 答:最简单的C++实现。1.编写函数,要求将字符串str中的大写字母转换成小... 答:.填空题 请补充函数fun(),该函数的功能是:把