“función de tira de pitón” Código de respuesta

¿Qué es la función de la franja R en Python?

#!/usr/bin/python

str = "     this is string example....wow!!!     ";
print str.rstrip()
str = "88888888this is string example....wow!!!8888888";
print str.rstrip('8')

#the answer

#this is string example....wow!!!
#88888888this is string example....wow!!!
Poor Peccary

función de tira de pitón

name = " softhunt.net "

print(name)

print(name.strip())
Outrageous Ostrich

Python String: .strip ()

# Мөрний эхэн ба төгсгөлийн тэмдэгтүүдийг арилгахын тулд .strip() аргыг ашиглаж болно.
# Мөрийн аргументыг арга руу дамжуулж, арилгах тэмдэгтүүдийн багцыг зааж өгч болно.
# Аргын аргумент байхгүй бол хоосон зай арилна.

text1 = '   apples and oranges   '
text1.strip()       # => 'apples and oranges'
 
text2 = '...+...lemons and limes...-...'
 
# Here we strip just the "." characters
text2.strip('.')    # => '+...lemons and limes...-'
 
# Here we strip both "." and "+" characters
text2.strip('.+')   # => 'lemons and limes...-'
 
# Here we strip ".", "+", and "-" characters
text2.strip('.+-')  # => 'lemons and limes'
Puzzled Porcupine

Ejemplo de función de tira de pitón

name = 'softhunt.net'
print(name)

strip_string = 'net'

print(name.strip(strip_string))
Outrageous Ostrich

Ejemplo simple de la función de tira de pitón

string = "softhunt.net"

print(string)

print(string.strip())

print(string.strip('softhunt'))
Outrageous Ostrich

Respuestas similares a “función de tira de pitón”

Preguntas similares a “función de tira de pitón”

Más respuestas relacionadas con “función de tira de pitón” en Python

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código