语法
upper()方法语法:
str.upper()
参数
NA。
返回值
返回小写字母转为大写字母的字符串。
实例
以下实例展示了upper()函数的使用方法:
#!/usr/bin/python
str="thisisstringexample….wow!!!"
print"str.upper():",str.upper()
以上实例输出结果如下:
str.upper():THISISSTRINGEXAMPLE….WOW!!!
实例扩展:
classA():
defgo(self):
print("goAgo!")
defstop(self):
print("stopAstop!")
defpause(self):
raiseException("NotImplemented")
classB(A):
defgo(self):
super(B,self).go()
print("goBgo!")
classC(A):
defgo(self):
super(C,self).go()
print("goCgo!")
defstop(self):
super(C,self).stop()
print("stopCstop!")
classD(B,C):
defgo(self):
super(D,self).go()
print("goDgo!")
defstop(self):
super(D,self).stop()
print("stopDstop!")
defpause(self):
print("waitD