python字符串常用方法
1、find(sub[, start[, end]])
在索引start
和end
之间查找字符串sub
找到,则返回最左端的索引值,未找到,则返回-1
start
和end
都可省略,省略start
说明从字符串开头找
省略end
说明查找到字符串结尾,全部省略则查找全部字符串
source_str = "There is a string accessing example" print(source_str.find('r')) >>> 3
2、count(sub, start, end)
返回字符串sub
在start
和end
之间出现的次数
source_str = "There is a string accessing example" print(source_str.count('e')) >>> 5
3、replace(old, new, count)
old
代表需要替换的字符,new
代表将要替代的字符,count
代表替换的次数(省略则表示全部替换)
source_str = "There is a string accessing example" print(source_str.replace('i', 'I', 1)) >>> There Is a string accessing example # 把小写的i替换成了大写的I
4、split(sep, maxsplit)
以sep
为分隔符切片,如果maxsplit
有指定值,则仅分割maxsplit
个字符串
分割后原来的str类型将转换成list
类型
source_str = "There is a string accessing example" print(source_str.split(' ', 3)) >>> ['There', 'is', 'a', 'string accessing example'] # 这里指定maxsplit=3,代表只分割前3个
5、startswith(prefix, start, end)
判断字符串是否是以prefix
开头,start
和end
代表从哪个下标开始,哪个下标结束
source_str = "There is a string accessing example" print(source_str.startswith('There', 0, 9)) >>> True
6、endswith(suffix, start, end)
判断字符串是否以suffix
结束,如果是返回True
,否则返回False
source_str = "There is a string accessing example" print(source_str.endswith('example')) >>> True
7、lower
将所有大写字符转换成小写
8、upper
将所有小写字符转换成大写
9、join
将列表拼接成字符串
list1 = ['ab', 'cd', 'ef'] print(" ".join(list1)) >>> ab cd ef
10、切片反转
list2 = "hello" print(list2[::-1]) >>> olleh
到此这篇关于python字符串常用方法的文章就介绍到这了,更多相关python字符串内容请搜索脚本之家以前的文章或继续浏览下面的相关文章希望大家以后多多支持脚本之家!
相关文章
Python PyAutoGUI模块控制鼠标和键盘实现自动化任务详解
这篇文章主要介绍了Python PyAutoGUI模块控制鼠标和键盘实现自动化任务,结合实例形式详细分析了pyautogui模块的安装、导入以及针对鼠标与键盘的各种常见响应操作实现技巧,需要的朋友可以参考下2018-09-09使用pandas实现csv/excel sheet互相转换的方法
今天小编就为大家分享一篇使用pandas实现csv/excel sheet互相转换的方法,具有很好的参考价值,希望对大家有所帮助。一起跟随小编过来看看吧2018-12-12selenium+python实现登陆QQ邮箱并发送邮件功能
这篇文章主要介绍了selenium+python实现登陆QQ邮箱并发送邮件功能,本文给大家分享完整实例代码,需要的朋友可以参考下2019-12-12
最新评论