“rstrip python” 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

rstrip python

text = "   hello   "

text = text.lstrip() # lstrip == left strip
>>> '   hello' 

text = text.rstrip() # rstrip == right strip
>>> 'hello   '

text = text.strip() # strip == strip from both sides
>>> 'hello'
woosal

Respuestas similares a “rstrip python”

Preguntas similares a “rstrip python”

Más respuestas relacionadas con “rstrip python” en Python

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código