Este enunciado fue aprobado por nuestros especialistas para garantizar la veracidad de nuestra esta sección.
Ejemplo 1: caracteres de la tira de python
# Python3 program to demonstrate the use of # strip() method
string =" python strip method test "# prints the string without stripping print(string)# prints the string by removing leading and trailing whitespaces print(string.strip())# prints the string by removing strip print(string.strip(' strip'))
Output:
python strip method test
python strip method test
python method test
Ejemplo 2: tira en python
txt =" banana "
x = txt.strip()#x will be "banana"
Ejemplo 3: tira de pitón
txt =" test "
txt.strip()#Output: "test"
txt.lstrip()#Output: "test "
txt.rstrip()#Output: " test"
Ejemplo 4: tira()
txt =",,,,,rrttgg.....banana....rrr"
x = txt.strip(",.grt")#outputs bananaprint(x)
Ejemplo 5: tira de python()
a =" smurf "
a = a.strip()#remove space at begining and end of stringprint(a)#smurf
Reseñas y valoraciones
Nos encantaría que puedieras difundir este post si si solucionó tu problema.
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)