capitalize() 是字符串的一个方法,用于把字符串的第一个字母转换成大写
In [1]: str = 'hello world' In [2]: str.capitalize() Out[2]: 'Hello world'