python之字符串方法upper/lower

Posted 枫哥

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python之字符串方法upper/lower相关的知识,希望对你有一定的参考价值。

1.描述:

upper():用于将字符串全部转换为大写字母

lower():用于将字符串全部转换为小写字母

2.语法

str.upper()

str.lower()

3.返回值

upper()或lower()方法有返回值,可以使用新的字符串来接受,调用upper()或lower()方法不会改变原字符

4.实例

upper()

str = "Hao123Maple"
new_str = str.upper()
print(new_str)

#打印出来的结果为:
HAO123MAPLER

lower()

str = "Hao123Maple"
new_str = str.lower()
print(new_str)

#打印出来的结果为:
hao123maple

以上是关于python之字符串方法upper/lower的主要内容,如果未能解决你的问题,请参考以下文章

Python title()upper()lower()方法--string

python中的 upper() lower()capitalize()title()方法

python3----转换大小写(upper lower capitalize and title)

python字符串相关函数 *title *upper *lower *swapcase *len *count *find *index *starts with *endswith

Python入门2

python基础字符串处理