栏目分类:
子分类:
返回
名师互学网用户登录
快速导航关闭
当前搜索
当前分类
子分类
实用工具
热门搜索
名师互学网 > IT > 软件开发 > 后端开发 > Python

Python中字符串常用查找方法

Python 更新时间: 发布时间: IT归档 最新发布 模块sitemap 名妆网 法律咨询 聚返吧 英语巴士网 伯小乐 网商动力

Python中字符串常用查找方法

我们定义一段字符串进行测试

Test = '''Life is short. Learn Python early! Life is short. Learn Python early'''
方法和使用示例说明结果
print(len(Test))
字符串长度68
print(Test.startswith('Life'))
以指定字符串开头True
print((Test.endswith('early')))
以指定字符串结尾True
print(Test.find('short'))
第一次出现字符串的下标8
print(Test.rfind('short'))
最后一次出现字符串的下标43
print(Test.count('is'))
字符串出现几次2
print(Test.isalnum())
所有字符全是字母或数字False
print('Python' in Test)
指定字符串在Test中True
print('Python' not in Test)
指定字符串不在Test中False

 

转载请注明:文章转载自 www.mshxw.com
本文地址:https://www.mshxw.com/it/487928.html
我们一直用心在做
关于我们 文章归档 网站地图 联系我们

版权所有 (c)2021-2022 MSHXW.COM

ICP备案号:晋ICP备2021003244-6号