Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

what is 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!!!
Source by www.tutorialspoint.com #
 
PREVIOUS NEXT
Tagged: #strip #function #python
ADD COMMENT
Topic
Name
3+8 =