Pitão rstrip() O método remove todos os caracteres finais da string. Isso significa que remove todos os caracteres especificados do lado direito da string. Se não especificarmos o parâmetro, ele removerá todos os espaços em branco da string. Este método retorna um valor de string.
Assinatura
rstrip([chars])
Parâmetros
caracteres : caractere a ser removido da string.
Retornar
Ele retorna string.
Vamos ver alguns exemplos do método rstrip() para entender sua funcionalidade.
Método Python String rstrip() Exemplo 1
Um exemplo simples, não leva nenhum parâmetro. Ele remove todos os espaços em branco da string.
# Python rstrip() method example # Variable declaration str = 'Java and C# ' # Calling function str2 = str.rstrip() # Displaying result print('Old string: ',str) print('New String: ',str2)
Saída:
método substring java
Old string: Java and C# New String: Java and C#
Método Python String rstrip() Exemplo 2
caracteres de string são removidos com base no parâmetro de tipo de char. Ele retorna uma string após remover o caractere.
# Python rstrip() method example # Variable declaration str = 'Java and C#' # Calling function str2 = str.rstrip('#') # Displaying result print('Old string: ',str) print('New String: ',str2)
Saída:
Old string: Java and C# New String: Java and C
Exemplo 3 do método Python String rstrip()
É muito fácil saber quantos caracteres foram removidos obtendo o comprimento da string. Veja o exemplo. O comprimento da string é exibido junto com o valor da string.
# Python rstrip() method example # Variable declaration str = 'Java and C#' # Calling function str2 = str.rstrip('#') # Displaying result print('Old string: ',str, len(str)) print('New String: ',str2, len(str2))
Saída:
Old string: Java and C# 11 New String: Java and C 10