Descrição
Método de string Python endswith()retorna True se a string termina com o sufixo especificado ; caso contrário, retorna False, restringindo opcionalmente a correspondência com os índices dados de início e fim .
Sintaxe
str.endswith(suffix[, start[, end]])
Parâmetros
suffix - Pode ser uma string ou uma tupla de sufixos a serem procurados.
start - A fatia começa aqui.
end - A fatia termina aqui.
Valor de retorno
TRUE se a string termina com o sufixo especificado, caso contrário, FALSE.
Exemplo
#!/usr/bin/python
str = "this is string example....wow!!!";
suffix = "wow!!!";
print str.endswith(suffix)
print str.endswith(suffix,20)
suffix = "is";
print str.endswith(suffix, 2, 4)
print str.endswith(suffix, 2, 6)
Resultado
True
True
True
False