BC15 大小写转换

思路:

step1:输入字符,并使用.lower()函数转换为小写,最后输出;

代码如下:

while True:
    try:
        n = input()
        print(n.lower())
    except:
        break