Python capitalize()方法
Python capitalize()方法
Python capitalize() 將字符串的第一個(gè)字母變成大寫,其他字母變小寫。對(duì)于 8 位字節(jié)編碼需要根據(jù)本地環(huán)境。
語(yǔ)法
capitalize()方法語(yǔ)法:
str.capitalize()
參數(shù)
- 無(wú)。
返回值
該方法返回一個(gè)首字母大寫的字符串。
實(shí)例
以下實(shí)例展示了capitalize()方法的實(shí)例:
>>>s = 'a, B' >>> s.capitalize() 'A, b' >>> s = ' a, B' # a 前面有空格 >>> s.capitalize() ' a, b' >>> s = 'a, BCD' >>> s.capitalize() 'A, bcd'
相關(guān)文章
- Python 環(huán)境搭建
- Python pass 語(yǔ)句
- Python 函數(shù)
- Python SMTP發(fā)送郵件
- Python2 與 Python3?? 版本區(qū)別
- Python 詞典
- Python 二叉樹(shù)
- Python 圖形
- Python3 if else 語(yǔ)句
- Python3 OS 文件/目錄方法
- Python os.fchown() 方法
- Python os.fpathconf() 方法
- Python os.makedev() 方法
- Python os.pathconf() 方法
- Python center()方法
- Python decode()方法
- Python rstrip()方法
- Python List cmp()方法
- Python 字典 Dictionary str()方法
- Python time altzone()方法