首页
技术小册
AIGC
面试刷题
技术文章
MAGENTO
云计算
视频课程
源码下载
PDF书籍
「涨薪秘籍」
登录
注册
第一章: 什么是字符串
第二章:ASCII 表与 Python 字符串字符
第三章:字符串属性
零索引
不变性
重复
索引和切片
第四章:字符串方法
str.split
str.splitlines
str.strip
str.zfill
str.isalpha
str.find和str.rfind
str.index
str.maketrans
str.endswith
第五章:字符串操作
循环遍历一个字符串
字符串和关系运算符
检查字符串的成员资格
字符串格式
处理引号和撇号
当前位置:
首页>>
技术小册>>
Python合辑3-字符串用法深度总结
小册名称:Python合辑3-字符串用法深度总结
str.find(substring) 如果子字符串存在于字符串中,则返回最低索引;否则它返回 -1。 str.rfind(substring) 返回最高索引。 ``` string = "programming" # find() and rfind() examples print(string.find('m')) print(string.find('pro')) print(string.rfind('m')) print(string.rfind('game')) ``` Output: ``` 6 0 7 -1 ```
上一篇:
str.isalpha
下一篇:
str.index
该分类下的相关小册推荐:
Python合辑5-格式化字符串
Python数据分析与挖掘实战(下)
Python编程轻松进阶(一)
Python爬虫入门与实战开发(上)
Python3网络爬虫开发实战(下)
Python与办公-玩转Excel
Python甚础Django与爬虫
Python合辑12-面向对象
Python合辑1-Python语言基础
Python机器学习基础教程(上)
Python与办公-玩转PPT
Python与办公-玩转Word