“rstrip python” Respostas de código

O que é R Strip Function in 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

Respostas semelhantes a “rstrip python”

Perguntas semelhantes a “rstrip python”

Mais respostas relacionadas para “rstrip python” em Python

Procure respostas de código populares por idioma

Procurar outros idiomas de código