导语:
本文主要介绍了关于python字符串中有哪些方法的相关知识,包括python字符串查找,以及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.'
本文教程操作环境:windows7系统、Python 3.9.1,DELL G3电脑。
本文为原创文章,版权归知行编程网所有,欢迎分享本文,转载请保留出处!
你可能也喜欢
- ♥ python == 是什么意思08/25
- ♥ win8安装python失败怎么解决12/20
- ♥ python格式函数如何与字符串连接?11/15
- ♥ python安装32位或64位08/29
- ♥ python及用法09/01
- ♥ python如何定义和调用函数08/19
内容反馈