Python upper()方法
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python upper()方法相关的知识,希望对你有一定的参考价值。
描述
Python upper() 方法将字符串中的小写字母转为大写字母。
语法
upper()方法语法:
str.upper()
参数
- NA。
返回值
返回小写字母转为大写字母的字符串。
实例
以下实例展示了 upper()函数的使用方法:
#!/usr/bin/python3 str = "this is string example from runoob....wow!!!"; print ("str.upper() : ", str.upper())
以上实例输出结果如下:
str.upper() : THIS IS STRING EXAMPLE FROM RUNOOB....WOW!!!
以上是关于Python upper()方法的主要内容,如果未能解决你的问题,请参考以下文章
Python 字符串title()upper()lower()方法
Python title()upper()lower()方法--string
python中的 upper() lower()capitalize()title()方法