网站首页 > 基础教程 正文
Python中的capitalize()方法用于将字符串的第一个字符转换为大写字母,其他字符转换为小写字母,并返回新字符串。如果第一个字符已经是大写字母或者字符串为空,则不做任何修改并直接返回原字符串。
01 语法
capitalize()方法的语法如下:
string.capitalize()
其中,string是要进行大小写转换的字符串。
02 参数
capitalize()方法不接受任何参数。
03 返回值
capitalize()方法返回转换后的字符串。
04 实例
下面我们通过一些实例来学习capitalize()方法的使用。
实例1:将字符串的第一个字符转换为大写字母
string = 'daxiongketang andy'
new_string = string.capitalize()
print(new_string)
输出结果为:
Daxiongketang andy
实例2:第一个字符已经是大写字母
string = 'Daxiongketang andy'
new_string = string.capitalize()
print(new_string)
输出结果为:
Daxiongketang andy
实例3:只有第一个字符转换为大写字母
string = 'dAXIONGKETANG ANDY'
new_string = string.capitalize()
print(new_string)
输出结果为:
Daxiongketang andy
猜你喜欢
- 2024-11-23 1 python的for循环格式及嵌套
- 2024-11-23 如何在python字符串输出中带换行符
- 2024-11-23 Python 字符串(三)分割、合并、替换
- 2024-11-23 python学习--字符串
- 2024-11-23 Python中的字符串操作
- 2024-11-23 Python中怎样用索引和切片取出字符串片段?
- 2024-11-23 Python基础之字符串
- 2024-11-23 Python基础编程——字符串的使用
- 2024-11-23 15 个必须知道的 Python 字符串方法
- 2024-11-23 python的数据类型——字符串(学习笔记)
- 最近发表
- 标签列表
-
- gitpush (61)
- pythonif (68)
- location.href (57)
- tail-f (57)
- pythonifelse (59)
- deletesql (62)
- c++模板 (62)
- css3动画 (57)
- c#event (59)
- linuxgzip (68)
- 字符串连接 (73)
- nginx配置文件详解 (61)
- html标签 (69)
- c++初始化列表 (64)
- exec命令 (59)
- canvasfilltext (58)
- mysqlinnodbmyisam区别 (63)
- arraylistadd (66)
- node教程 (59)
- console.table (62)
- c++time_t (58)
- phpcookie (58)
- mysqldatesub函数 (63)
- window10java环境变量设置 (66)
- c++虚函数和纯虚函数的区别 (66)