• 博客园logo
  • 会员
  • 众包
  • 新闻
  • 博问
  • 闪存
  • 赞助商
  • HarmonyOS
  • Chat2DB
    • 搜索
      所有博客
    • 搜索
      当前博客
  • 写随笔 我的博客 短消息 简洁模式
    用户头像
    我的博客 我的园子 账号设置 会员中心 简洁模式 ... 退出登录
    注册 登录
LilyLiya
博客园    首页    新随笔    联系   管理    订阅  订阅
Python String find()
not found, return -1; if found, return the lowest index of the substring.

The find() method returns the lowest index of the substring if it is found in given string. If its is not found then it returns -1.

Syntax :

str.find(sub,start,end)

Parameters :

sub : It’s the substring which needs to be searched in the given string.
start : Starting position where sub is needs to be checked within the string.
end : Ending position where suffix is needs to be checked within the string.

NOTE : If start and end indexes are not provided then by default it takes 0 and length-1 as starting and ending indexes where ending indxes is not included in our search.

Returns:

returns the lowest index of the substring if it is found in given string. If it’s not found then it returns -1.

The find() method is similar to index(). The only difference is find() returns -1 if searched string is not found and index() throws an exception in this case.

posted on 2021-05-27 01:33  LilyLiya  阅读(176)  评论(0)    收藏  举报
刷新页面返回顶部
博客园  ©  2004-2025
浙公网安备 33010602011771号 浙ICP备2021040463号-3