“rstrip python” Réponses codées

Quelle est la fonction de bande 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

Réponses similaires à “rstrip python”

Questions similaires à “rstrip python”

Plus de réponses similaires à “rstrip python” dans Python

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code