Register for our webinar

How to Nail your next Technical Interview

1 hour
Loading...
1
Enter details
2
Select webinar slot
*Invalid Name
*Invalid Name
By sharing your contact details, you agree to our privacy policy.
Step 1
Step 2
Congratulations!
You have registered for our webinar
check-mark
Oops! Something went wrong while submitting the form.
1
Enter details
2
Select webinar slot
*All webinar slots are in the Asia/Kolkata timezone
Step 1
Step 2
check-mark
Confirmed
You are scheduled with Interview Kickstart.
Redirecting...
Oops! Something went wrong while submitting the form.
close-icon
Iks white logo

You may be missing out on a 66.5% salary hike*

Nick Camilleri

Head of Career Skills Development & Coaching
*Based on past data of successful IK students
Iks white logo
Help us know you better!

How many years of coding experience do you have?

Thank you! Your submission has been received!
Oops! Something went wrong while submitting the form.
Iks white logo

FREE course on 'Sorting Algorithms' by Omkar Deshpande (Stanford PhD, Head of Curriculum, IK)

Thank you! Please check your inbox for the course details.
Oops! Something went wrong while submitting the form.
Our June 2021 cohorts are filling up quickly. Join our free webinar to Uplevel your career
close
closeAbout usWhy usInstructorsReviewsCostFAQContactBlogRegister for Webinar

The replace() Function in Python

Last updated by Abhinav Rawat on Apr 01, 2024 at 01:04 PM | Reading time: 4 minutes

The fast well prepared banner

Attend our Free Webinar on How to Nail Your Next Technical Interview

WEBINAR +LIVE Q&A

How To Nail Your Next Tech Interview

The replace() Function in Python
Hosted By
Ryan Valles
Founder, Interview Kickstart
strategy
Our tried & tested strategy for cracking interviews
prepare list
How FAANG hiring process works
hiring process
The 4 areas you must prepare for
hiring managers
How you can accelerate your learnings

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:

  • What Is the replace() Function in Python and What Does It Do?
  • The replace() Function in Python: Syntax
  • The replace() Function in Python: Example
  • FAQs on the replace() Function in Python

What Is the replace() Function in Python and What Does It Do?

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.

The replace() Function in Python: Syntax 


string.replace(originalSubstring, newSubstring, timesReplaced)

Parameters: 

  • originalSubstring: The original substring we want to replace. 
  • newSubstring: The new substring that should replace the original substring.
  • timesReplaced (optional): The number of times we want the original substring to be replaced by the new one. By default, it replaces all instances of the original substring with the desired substring in the copy of the string. 

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.

The replace() Function in Python: Example

Here, we take a look at how to use the function replace() in Python when needed:

Code


# 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.

Output


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.

FAQs on the replace() Function in Python

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.

Ready to Nail Your Next Coding Interview?

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!

Sign up now!





Last updated on: 
April 1, 2024
Author

Abhinav Rawat

Product Manager @ Interview Kickstart | Ex-upGrad | BITS Pilani. Working with hiring managers from top companies like Meta, Apple, Google, Amazon etc to build structured interview process BootCamps across domains

Attend our Free Webinar on How to Nail Your Next Technical Interview

Register for our webinar

How to Nail your next Technical Interview

1
Enter details
2
Select webinar slot
By sharing your contact details, you agree to our privacy policy.
Step 1
Step 2
Congratulations!
You have registered for our webinar
check-mark
Oops! Something went wrong while submitting the form.
1
Enter details
2
Select webinar slot
Step 1
Step 2
check-mark
Confirmed
You are scheduled with Interview Kickstart.
Redirecting...
Oops! Something went wrong while submitting the form.

The replace() Function in Python

Worried About Failing Tech Interviews?

Attend our webinar on
"How to nail your next tech interview" and learn

Ryan-image
Hosted By
Ryan Valles
Founder, Interview Kickstart
blue tick
Our tried & tested strategy for cracking interviews
blue tick
How FAANG hiring process works
blue tick
The 4 areas you must prepare for
blue tick
How you can accelerate your learnings
Register for Webinar
entroll-image