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()方法