“Rstrip Python” Code-Antworten

Was ist R -Streifenfunktion 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

Ähnliche Antworten wie “Rstrip Python”

Fragen ähnlich wie “Rstrip Python”

Weitere verwandte Antworten zu “Rstrip Python” auf Python

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen