Interview Kickstart has enabled over 21000 engineers to uplevel.
Python supports object-oriented programming and has a concise, readable, and easy-to-learn syntax. It is no wonder that it is one of the most popular programming languages. An integral part of Python are its built-in functions.
We've written a series of articles to help you learn and brush up on the most useful Python functions. In this article, we’ll learn about Python's replace() function and how to use it.
If you are preparing for a tech interview, check out our technical interview checklist, interview questions page, and salary negotiation e-book to get interview-ready! Also, read Python String join() Method, Python Exit commands, and Type and Isinstance In Python for more content on Python coding interview preparation.
Having trained over 10,000 software engineers, we know what it takes to crack the toughest tech interviews. Our alums consistently land offers from FAANG+ companies. The highest ever offer received by an IK alum is a whopping $1.267 Million!
At IK, you get the unique opportunity to learn from expert instructors who are hiring managers and tech leads at Google, Facebook, Apple, and other top Silicon Valley tech companies.
Want to nail your next tech interview? Sign up for our FREE Webinar.
In this article, we’ll cover:
The built-in function replace() in Python replaces all or some specified number of occurrences of a substring in the original string with a different substring. It returns a copy of the original string with instances of the old substring replaced with the new desired substring as required.
string.replace(originalSubstring, newSubstring, timesReplaced)
Parameters:
Return Value:
Python’s replace() function returns a copy of the original string with some or all occurrences of a substring replaced with another desired substring.
Note that replace() does not change the original string.
Here, we take a look at how to use the function replace() in Python when needed:
# Using the replace() function in Python 3
stringExample = "She sells seashells on the seashore."
# Replaces all occurrences of sh with replaced
print(stringExample.replace("sh", "*replaced*"))
# Replaces all occurrences of se with replaced
print(stringExample.replace("se", "*replaced*"))
# Replaces all occurrences of s with replaced
print(stringExample.replace("s", "*replaced*"))
# Replaces 2 occurrences of s with replaced
print(stringExample.replace("s", "*replaced*", 2))
# Replaces all occurrences of ells with empty string, effectively removing ells from the string
print(stringExample.replace("ells", ""))
# Replaces all occurrences of ss with empty rr. Note the search begins after the previous match has been replaced at the next index
stringExample2 = "sssss"
print(stringExample2.replace("ss", "rr"))
# Note that after index 0, the next replacement check is at index 2, which passes, and the last replacement check is at index 4, which fails.
# Note that if after index 0 the next replacement check had happened at index 1, and so on, all instances of s would have been replaced.
She sells sea*replaced*ells on the sea*replaced*ore.
She *replaced*lls *replaced*ashells on the *replaced*ashore.
She *replaced*ell*replaced* *replaced*ea*replaced*hell*replaced* on the *replaced*ea*replaced*hore.
She *replaced*ell*replaced* seashells on the seashore.
She s seash on the seashore.
rrrrs
Found this article helpful? You can learn about more Python functions on the learn page.
Q1. What does replace() do in Python?
Python’s replace() function returns a copy of the original string with instances of the old substring replaced with the new desired substring as required.
Q2. What is the default value in the replace() function for the number of replacements argument?
All instances of the old substring are replaced with the desired substring by default in Python’s replace() function.
Q3. How do you replace two characters in a string in Python?
We can use functions like replace(), sub(), subn(), translate(), and maketrans() in Python to replace multiple characters in a string.
Q4. What arguments does replace() require?
replace() takes the old substring we want to replace and the new substring to replace all instances of the old substring with as mandatory arguments.
Q5. How can we replace a string in a list in Python?
We can replace a string in a list in Python by using the replace() function along with a for loop.
Whether you’re a coding engineer gunning for a software developer or software engineer role, a tech lead, or you’re targeting management positions at top companies, IK offers courses specifically designed for your needs to help you with your technical interview preparation!
If you’re looking for guidance and help with getting started, sign up for our FREE webinar. As pioneers in the field of technical interview preparation, we have trained thousands of software engineers to crack the most challenging coding interviews and land jobs at their dream companies, such as Google, Facebook, Apple, Netflix, Amazon, and more!
Attend our webinar on
"How to nail your next tech interview" and learn