upper() 用于把字符串中的小写字母转换成大写字母

In [1]: str = "Hello World"

In [2]: str.upper()
Out[2]: 'HELLO WORLD'