Python中rindex函数怎么用
在Python中使用rindex函数的方法
rindex:rindex()函数的作用是用于返回子字符串 str 在字符串中最后出现的位置。
rindex()函数语法:
str.rindex(str, beg=0 end=len(string))
参数:
str:查找的字符串。
beg:开始查找的位置,默认为0。
end:结束查找位置,默认为字符串的长度。
rindex()函数使用方法:
str1 = "this is string example....wow!!!";
str2 = "is";
print str1.rindex(str2);
print str1.index(str2);
输出结果为:
5
2
声明:本站所有作品(图文、音视频)均由用户自行上传分享,或互联网相关知识整合,仅供网友学习交流,若您的权利被侵害,请联系 管理员 删除。
本文链接:http://news.ew35.com/