Python capitalize()方法
Python capitalize()方法
Python capitalize() 將字符串的第一個字母變成大寫,其他字母變小寫。對于 8 位字節編碼需要根據本地環境。
語法
capitalize()方法語法:
str.capitalize()
參數
- 無。
返回值
該方法返回一個首字母大寫的字符串。
實例
以下實例展示了capitalize()方法的實例:
>>>s = 'a, B' >>> s.capitalize() 'A, b' >>> s = ' a, B' # a 前面有空格 >>> s.capitalize() ' a, b' >>> s = 'a, BCD' >>> s.capitalize() 'A, bcd'
相關文章
- Python 環境搭建
- Python pass 語句
- Python 函數
- Python SMTP發送郵件
- Python2 與 Python3?? 版本區別
- Python 詞典
- Python 二叉樹
- Python 圖形
- Python3 if else 語句
- 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()方法