Método Python String find ()

Descrição

Método de string Python find()determina se string str ocorre em string, ou em uma substring de string se o índice inicial começar e o final do índice final forem fornecidos.

Sintaxe

str.find(str, beg=0, end=len(string))

Parâmetros

  • str - Isso especifica a string a ser pesquisada.

  • beg - Este é o índice inicial, por padrão é 0.

  • end - Este é o índice final, por padrão é igual ao comprimento da string.

Valor de retorno

Índice se encontrado e -1 caso contrário.

Exemplo

#!/usr/bin/python

str1 = "this is string example....wow!!!";
str2 = "exam";

print str1.find(str2)
print str1.find(str2, 10)
print str1.find(str2, 40)

Resultado

15
15
-1