码迷,mamicode.com
首页 > 其他好文 > 详细

string的方法find

时间:2018-11-28 22:24:04      阅读:211      评论:0      收藏:0      [点我收藏+]

标签:code   star   索引   出现   art   方法   find   arguments   字符   

官方解释:find(sub[, start[, end]]) Return the lowest index in the string where substring sub is found within the slice s[start:end]. Optional arguments start and end are interpreted as in slice notation. Return -1 if sub is not found.(返回在切片s [start:end]中找到substring sub的字符串中的最低索引。可选参数start和end被解释为切片表示法。如果未找到sub,则返回-1。)

In [142]: print(s13.find(‘skyler‘)) # 查找a出现的位置
2

In [143]: print(s13.find(‘walter‘)) # 查找Walter的位置,如果没有则返回-1
-1

In [144]: print(s13.find(‘a‘, 8, 22)) # 切片找
20

string的方法find

标签:code   star   索引   出现   art   方法   find   arguments   字符   

原文地址:https://www.cnblogs.com/lcfzh/p/10034453.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!