visualization of the working of removeprefix and removesuffix string functions in python 3.9

New String Functions in Python 3.9

Python released its latest major release – Python 3.9.0 on October 5th, 2020. The release comes with a number of new features and optimizations including some new string functions. Also, this is the first version of python to default to the 64-bit installer on Windows.

The new release includes a couple of additional string functions removeprefix() and removesuffix() to remove prefix and suffix from a string respectively. Let’s look at the syntax and usage of the two functions through some examples –

The following is the syntax for using the removeprefix() function:

s.removeprefix(prefix)

Here, s is the string you want to remove the prefix from. If the string starts with the prefix, it essentially returns s[len(prefix):]. If the string does not start with the prefix, the original string is returned. See the example below:

# remove prefix from a string
print('TicTacToe'.removeprefix('Tic'))
print('TicTacToe'.removeprefix('Tac'))

Output:

TacToe
TicTacToe

In the above example, since 'TicTacToe' starts with the prefix 'Tic', the prefix is removed in the string returned by the removeprefix() function. Whereas, 'TicTacToe' does not start with the prefix 'Tac' hence removeprefix() returns the string as-is.

For more on the function, refer to its official documentation.

The following is the syntax for using the removesuffix() function:

📚 Data Science Programs By Skill Level

Introductory

Intermediate ⭐⭐⭐

Advanced ⭐⭐⭐⭐⭐

🔎 Find Data Science Programs 👨‍💻 111,889 already enrolled

Disclaimer: Data Science Parichay is reader supported. When you purchase a course through a link on this site, we may earn a small commission at no additional cost to you. Earned commissions help support this website and its team of writers.

s.removesuffix(suffix)

Here, s is the string you want to remove the suffix from. If the string ends with the suffix, it essentially returns s[:-len(suffix)]. If the string does not end with the suffix, the original string is returned. See the example below:

# remove prefix from a string
print('TicTacToe'.removesuffix('Toe'))
print('TicTacToe'.removesuffix('Tac'))

Output:

TicTac
TicTacToe

In the above example, since 'TicTacToe' ends with the suffix 'Toe', the suffix is removed in the string returned by the removesuffix() function. Whereas, 'TicTacToe' does not end with the suffix 'Tac' hence removesuffix() returns the string as-is.

For more on the function, refer to its official documentation.

There are also a number of other features and optimizations that have come with this release. Refer to this documentation on what’s new in Python 3.9


Subscribe to our newsletter for more informative guides and tutorials.
We do not spam and you can opt out any time.


Author

  • Piyush Raj

    Piyush is a data professional passionate about using data to understand things better and make informed decisions. He has experience working as a Data Scientist in the consulting domain and holds an engineering degree from IIT Roorkee. His hobbies include watching cricket, reading, and working on side projects.

Scroll to Top