string de python | banda()

strip() es una función incorporada en el lenguaje de programación Python que devuelve una copia de la string con los caracteres iniciales y finales eliminados (según el argumento de string pasado). 
Sintaxis: 

string.strip([chars])
Parameter: 
There is only one optional parameter in it:
1)chars - a string specifying 
the set of characters to be removed. 

If the optional chars parameter is not given, all leading 
and trailing whitespaces are removed from the string.
Return Value:
Returns a copy of the string with both leading and trailing characters removed.

Python3

# Python3 program to demonstrate the use of
# strip() method 
 
string = """    geeks for geeks    """
 
# prints the string without stripping
print(string)
 
# prints the string by removing leading and trailing whitespaces
print(string.strip())  
 
# prints the string by removing geeks
print(string.strip(' geeks'))
Producción: 

    geeks for geeks     
geeks for geeks
for

 

Python3

# Python Program to demonstrate use of strip() method
 
str1 = 'geeks for geeks'
# Print the string without stripping.
print(str1)
 
# String whose set of characters are to be
# remove from original string at both its ends.
str2 = 'ekgs'
 
# Print string after stripping str2 from str1 at both its end.
print(str1.strip(str2))
Producción: 

geeks for geeks
 for

 

Funcionamiento del código anterior: 
Primero construimos una string str1 = ‘geeks for geeks’ 
Ahora llamamos al método strip sobre str1 y pasamos str2 = ‘ekgs’ como argumento. 
Ahora, el intérprete de Python rastrea str1 desde la izquierda. Elimina el carácter de str1 si está presente en str2. 
De lo contrario, deja de rastrear. 
Ahora el intérprete de Python rastrea str1 desde la derecha. Elimina el carácter de str1 si está presente en str2. 
De lo contrario, deja de rastrear. 
Ahora, por fin, devuelve la string resultante.
Cuando llamamos a strip() sin argumentos, elimina los espacios iniciales y finales. 
 

Python3

# Python Program to demonstrate use of strip() method without any argument
str1 = """    geeks for geeks    """
 
# Print the string without stripping.
print(str1)
 
# Print string after removing all leading
# and trailing whitespaces.
print(str1.strip())
Aporte: 

    geeks for geeks     

 

Producción: 

geeks for geeks

Aplicación práctica: 
dada una string, elimine la ocurrencia de la palabra «el» del principio y el final. 
 

Python

# Python3 program to demonstrate the practical application
# strip()
 
 
string = " the King has the largest army in the entire world the"
 
# prints the string after removing the from beginning and end
print(string.strip(" the"))
Aporte: 

the King has the largest army in the entire world the

 

Producción: 

King has the largest army in the entire world

Publicación traducida automáticamente

Artículo escrito por Striver y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA

Deja una respuesta

Tu dirección de correo electrónico no será publicada. Los campos obligatorios están marcados con *