Table of Contents
In this tutorial, we will learn about the Python String rstrip() method with the help of examples.
The rstrip() method returns a copy of the string with trailing characters removed (based on the string argument passed).
Example
title = 'Python Programming ' # remove trailing whitespace print(title.rstrip()) # Output: Python Programming
1. Syntax of String rstrip()
The syntax of rstrip() is:
string.rstrip([chars])
2. rstrip() Parameters
- chars (optional) – a string specifying the set of trailing characters to be removed.
The rstrip() removes characters from the right based on the argument (a string specifying the set of characters to be removed).
If chars argument is not provided, all whitespaces on the right are removed from the string.
3. Return Value from rstrip()
The rstrip() returns a copy of the string with trailing characters stripped.
All combinations of characters in chars argument are removed from the right of the string until the first mismatch.
4. Example: Working of rstrip()
random_string = 'this is good '
# Trailing whitespace are removed
print(random_string.rstrip())
# 'si oo' are not trailing characters so nothing is removed
print(random_string.rstrip('si oo'))
# in 'sid oo', 'd oo' are the trailing characters, 'ood' is removed from the string
print(random_string.rstrip('sid oo')) website = 'www.maixuanviet.com'
print(website.rstrip('m/.'))
Output
this is good this is good this is g www.maixuanviet.com
Related posts:
Python Tuple
Python Global, Local and Nonlocal variables
Python frozenset()
Python List extend()
Python Function Arguments
Python type()
Python Keywords and Identifiers
Python Program to Find Sum of Natural Numbers Using Recursion
Python Program to Check If a List is Empty
How to Remove the Last Character of a String?
Python Set remove()
Python Program to Return Multiple Values From a Function
Python String upper()
Python String title()
Node.js vs Python for Backend Development
Python Program to Check if a Number is Odd or Even
Python Program to Create a Countdown Timer
Java InputStream to String
Python sorted()
Python property()
Python List insert()
Python String isdecimal()
Python pow()
Python Program to Find the Size (Resolution) of a Image
Python Shallow Copy and Deep Copy
Python Program to Find ASCII Value of Character
Python dict()
Python Iterators
Python isinstance()
Python Program to Check if a Key is Already Present in a Dictionary
Python Program to Slice Lists
Python Program to Make a Simple Calculator