Keyboard shortcuts

Press or to navigate between chapters

Press S or / to search in the book

Press ? to show this help

Press Esc to hide this help

find in string

  • find
  • rfind

Alternatively use find and rfind that will return -1 instead of raising an exception.

text = "The black cat climbed the green tree."
print(text.find("bl"))     # 4
print(text.find("The"))    # 0
print(text.find("dog"))    # -1

print(text.find("c"))      # 7
print(text.find("c", 8))   # 10

print(text.find("gr", 8))      # 26
print(text.find("gr", 8, 16))  # -1


print(text.rfind("c", 8))   # 14