赞
踩
HZF有一个魔法棒,魔法棒有很多功能,其中最简单的是对字母的改变:可以将大写字母变成小写字母(A->a,B->b,C->c…Z->z),将小写字母变成大写字母(a->A…z->Z),魔法对数字不生效。HZF让你告诉他改变之后的字符串是什么样的。
时间限制:1000ms, 内存限制:256MB
输入一个字符串(只包含大小写字母和数字)。每个字符串字符数(0 < n <= 1000)。
输出改变后的字符串。
输入样例 1
abC02
输出样例 1
ABc02
输入样例 2
aceACE
输出样例 2
ACEace
# If you need to import additional packages or classes, please import here.
'''
19.5ms
7MB
'''
def func():
# please define the python3 input here. For example: a,b = map(int, input().strip().split())
# please finish the function body here.
# please define the python3 output here. For example: print().
input_str = input().strip()
result_list = []
for item_str in input_str:
if 'a' <= item_str <= 'z':
result_list.append(item_str.upper())
elif 'A' <= item_str <= 'Z':
result_list.append(item_str.lower())
else:
result_list.append(item_str)
print("".join(result_list)) # 将列表转换为字符串
if __name__ == "__main__":
func()
# If you need to import additional packages or classes, please import here.
'''
17ms
'''
def func():
# please define the python3 input here. For example: a,b = map(int, input().strip().split())
# please finish the function body here.
# please define the python3 output here. For example: print().
str1 = input()
list1 = list()
for i in str1:
if i.islower():
list1.append(i.upper())
elif i.isupper():
list1.append(i.lower())
else:
list1.append(i)
print("".join(list1))
if __name__ == "__main__":
func()
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。