search
Search
Login
Unlock 100+ guides
menu
menu
web
search toc
close
Comments
Log in or sign up
Cancel
Post
account_circle
Profile
exit_to_app
Sign out
What does this mean?
Why is this true?
Give me some examples!
search
keyboard_voice
close
Searching Tips
Search for a recipe:
"Creating a table in MySQL"
Search for an API documentation: "@append"
Search for code: "!dataframe"
Apply a tag filter: "#python"
Useful Shortcuts
/ to open search panel
Esc to close search panel
to navigate between search results
d to clear all current filters
Enter to expand content preview
icon_star
Doc Search
icon_star
Code Search Beta
SORRY NOTHING FOUND!
mic
Start speaking...
Voice search is only supported in Safari and Chrome.
Navigate to

Pandas Series str | rstrip method

schedule Aug 10, 2023
Last updated
local_offer
PythonPandas
Tags
mode_heat
Master the mathematics behind data science with 100+ top-tier guides
Start your free 7-days trial now!

Pandas Series str.rstrip(~) method removes the combination of the specified characters that appear from the right of each string in the Series.

Note that a new Series is returned, and the original is kept intact.

Parameters

1. to_strip | str or None | optional

The combination of the characters of to_strip that appears at the back of each string will be removed. For instance, if to_strip="ab", then Aab and Aba will both become A.

By default, trailing whitespaces (including newlines and tabs) will be removed.

Return value

A new Series or Index.

Examples

Basic usage

By default, rstrip(~) removes trailing whitespaces (including newlines and tabs):

s = pd.Series([" ","a a","\na","a\t"])
s_stripped = s.str.rstrip()
s_stripped
0
1 a a
2 a
3 a
dtype: object

To confirm that the whitespaces have indeed been stripped, we print the length of each string:

s_stripped.str.len()
0 0
1 3
2 1
3 1
dtype: int64

Specifying to_strip

To remove a combination of the characters "ab" at the back:

s = pd.Series(["Aab","Aba"])
s.str.rstrip("ab")
0 A
1 A
dtype: object
robocat
Published by Arthur Yanagisawa
Edited by 0 others
Did you find this page useful?
thumb_up
thumb_down
Comment
Citation
Ask a question or leave a feedback...
thumb_up
0
thumb_down
0
chat_bubble_outline
0
settings
Enjoy our search
Hit / to insta-search docs and recipes!