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 | strip method

schedule Aug 12, 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.strip(~) method removes the combination of the specified characters that appear in the front and back 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 front or back of each string will be removed. For instance, if to_strip="ab", then abA and baA will both become A.

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

Return Value

A new Series or Index.

Examples

Basic usage

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

s = pd.Series([" ","a a","\na","a\t"])
s_stripped = s.str.strip()
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 front and back:

s = pd.Series(["abA","baA"])
s.str.strip("ab")
0 A
1 A
dtype: object

Here, notice how "baA" got stripped down to "A" - this is because a combination of the specified characters is stripped ("ab" and "ba" in this case).

robocat
Published by Isshin Inada
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
1
thumb_down
0
chat_bubble_outline
0
settings
Enjoy our search
Hit / to insta-search docs and recipes!