.strip()

laisvigas's avatar
Published Oct 13, 2023
Contribute to Docs

The .strip() method removes any whitespace at the beginning and end of a string. Optionally, a string of characters can be passed in as an argument to remove those characters instead. Otherwise, all whitespaces will be removed.

Note: The .strip() method removes specified characters only when they appear as the outermost leading and trailing characters in the string.

Syntax

The .strip() method is called on a string using the following syntax:

string.strip(characters)
  • characters (optional): Specified character/characters to be removed from the beginning and end of the string.

Example 1

The following example shows the usage of .strip() without a parameter:

string_with_white_spaces = " 221B, Baker Street "
print(string_with_white_spaces)
print(string_with_white_spaces.strip())

Output:

221B, Baker Street
221B, Baker Street

Example 2

The following example shows the usage of .strip() with a parameter:

messy_sentence = "iiixxxyyyxyyyyyOctopuses have three hearts and blue blood.iiixxyyyxxyyy"
print(messy_sentence.strip("ixy"))

Output:

Octopuses have three hearts and blue blood.

Codebyte Example

The following code is runnable and uses the .strip() method.

Code
Output
Loading...

All contributors

Contribute to Docs

Learn Python on Codecademy