Python 3 - Método String endswith ()

Descrição

Ele 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/python3

Str = 'this is string example....wow!!!'
suffix = '!!'
print (Str.endswith(suffix))
print (Str.endswith(suffix,20))

suffix = 'exam'
print (Str.endswith(suffix))
print (Str.endswith(suffix, 0, 19))

Resultado

True
True
False
True