python为我们提供了 upper() 方法,该方法可以将字符串中的小写字母转为大写字母。
(推荐教程:Python入门教程)
语法:
str.upper()
返回值:
返回小写字母转为大写字母的字符串。
代码示例:
#!/usr/bin/python
str = "this is string example....wow!!!";
print "str.upper() : ", str.upper()
运行结果:
str.upper() : THIS IS STRING EXAMPLE....WOW!!!
其他相关函数:
lower():所有字母小写
capitalize():首字母大写,其他字母小写
title():每个单词首字母大写,其他小写
举例:
#encoding:UTF-8
msg = 'www.BAIDU.com.123'
print(msg.upper()) #upper()函数,将所有字母都转换成大写
print(msg.lower()) #lower()函数,将所有字母都转换成小写
print(msg.capitalize()) #capitalize()函数,将首字母都转换成大写,其余小写
print(msg.title()) #title()函数,将每个单词的首字母都转换成大写,其余小写
输出结果:
WWW.BAIDU.COM.123
www.baidu.com.123
Www.baidu.com.123
Www.Baidu.Com.123