【说站】python字符串中有哪些方法
2024-12-17
6
python字符串中有哪些方法
字符串方法
1.capitalize() :将字符串的第一个字符转换为大写字母
2.title():将所有单词的第一个字符转换为大写字母
3.upper():将字符串的所有字符转化为大写字母
4.lower():将字符串的所有字符转化为小写字母
5.swapcase() :将字符串的所有字符大小写互换
实例
>>> string = 'while There is life There is hope.' >>> string.capitalize() # 'While there is life there is hope.' >>> string.title() # 'While There Is Life There Is Hope.' >>> string.upper() # 'WHILE THERE IS LIFE THERE IS HOPE.' >>> string.lower() # 'while there is life there is hope.' >>> string.swapcase() # 'WHILE tHERE IS LIFE tHERE IS HOPE.'
以上就是python字符串方法的介绍,希望对大家有所帮助。更多Python学习指路:python基础教程
本文教程操作环境:windows7系统、Python 3.9.1,DELL G3电脑。
更新于:1天前赞一波!1
相关文章
- 【说站】python输入成绩求平均分
- 【说站】python温度转换代码
- 【说站】python怎么将整数反转输出
- 【说站】python可迭代对象的本质探究
- 【说站】python迭代器的应用场景
- 【说站】python如何创建GUI程序
- 【说站】python数据变换如何实现
- 【说站】python格式字符串是什么
- 【说站】python默认索引是什么
- 【说站】python列表添加和删除的方法
- 【说站】python列表的创建和存放
- 【说站】python dict.item()方法遍历字典
- 【说站】python序列操作的整理
- 【说站】python列表中sort()参数的使用
- 【说站】python字符串方法format()如何使用
- 【说站】python列表操作符有哪些
- 【说站】JavaScript垃圾回收的两种方法
- 【说站】python mktime()如何计算时间
- 【说站】python搜索模块如何查询
- 【说站】python如何定义索引模块类
文章评论
评论问答