Posts pythonTip 15 大小写转换
Post
Cancel

pythonTip 15 大小写转换

题目描述:

给定一个字符串a, 将a中的大写字母 转换成小写,其它字符不变,并输出。

例如:a=”aaaaaabbbDDDDD”

则输出:aaaaaabbbddddd

分析

python 里面有字符串中有内置的方法,专门干这个事的。 str.lower() 把所有大写换成小写。 str.upper() 把所有小写换成大写。

print(a.lower())
This post is licensed under CC BY 4.0 by the author.
Trending Tags
Contents

pythonTip 14 Python之美

pythonTip 16 人民币金额打印

Trending Tags