Search
 
SCRIPT & CODE EXAMPLE
 

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!!!
Comment

PREVIOUS NEXT
Code Example
Python :: animate time series python 
Python :: how to get chat first name in telebot 
Python :: how to filter out all NaN values in pandas df 
Python :: Print a nested list line by line in python 
Python :: change the style of notebook tkinter 
Python :: python code to wait 
Python :: logout in discord.py 
Python :: random variables python 
Python :: append one column pandas dataframe 
Python :: filter function using lambda in python 
Python :: Appending pandas dataframes generated in a for loop 
Python :: django round 2 decimal 
Python :: mean class accuracy sklearn 
Python :: goal parser 
Python :: dataclass post init 
Python :: all possible substring in python 
Python :: python transpose list 
Python :: usong brave browser pyhton 
Python :: polarean share price 
Python :: how to make python open a link 
Python :: how to print something with tkinter 
Python :: python test if string is int 
Python :: Writing Bytes to a File in python 
Python :: python string exclude non alphabetical characters 
Python :: import python module from another directory 
Python :: convert number to time python 
Python :: how to get the code of a website in python 
Python :: np replace nan 
Python :: python time function duration and memory usage 
Python :: supprimer ligne python dataframe 
ADD CONTENT
Topic
Content
Source link
Name
7+4 =