Example & Tutorial understanding programming in easy ways.

How we can remove the white space from the right portion of the string ?

We can do this by the rstrip() function 

Example :

s="programming   "

s=s.rstrip() 

// "programming"

Read More →