描述:
给定一个字符串a, 将a中的大写字母 转换成小写,其它字符不变,并输出。
例如:a="aaaaaabbbDDDDD"
则输出:aaaaaabbbddddd
from __future__ import print_function print(a.lower(),end="")