导语:
本文主要介绍了关于python中的rfind函数如何使用的相关知识,包括python bin函数,以及python rjust函数这些编程知识,希望对大家有参考作用。
python中rfind函数的用法:rfind()函数用于返回字符串最后一次出现的位置(从右到左查询),如果没有匹配则返回“-1”。具体用法如下:[print str.rfind(substr, 0, 10);]。
函数描述:
(推荐教程:
)
Python rfind() 返回字符串最后一次出现的位置(从右到左搜索),如果没有匹配,则返回 -1。
语法:
str.rfind(str, beg=0 end=len(string))
参数:
-
str -- 查找的字符串
-
beg -- 开始查找的位置,默认为 0
-
end -- 结束查找位置,默认为字符串的长度。
举例:
#!/usr/bin/python
str = "this is really a string example....wow!!!";
substr = "is";
print str.rfind(substr);
print str.rfind(substr, 0, 10);
print str.rfind(substr, 10, 0);
print str.find(substr);
print str.find(substr, 0, 10);
print str.find(substr, 10, 0);
输出结果:
5
5
-1
2
2
-1
本文为原创文章,版权归知行编程网所有,欢迎分享本文,转载请保留出处!
你可能也喜欢
- ♥ 如何清空python中的列表11/21
- ♥ 如何增加python字体09/12
- ♥ python使用pop删除元素11/14
- ♥ python上下文管理器的基本介绍12/24
- ♥ mac需要安装python吗12/26
- ♥ 如何打开python shell脚本?01/04
内容反馈