🌐
W3Schools
w3schools.com › python › ref_string_replace.asp
Python String replace() Method
Python Examples Python Compiler ... Python Interview Q&A Python Training ... The replace() method replaces a specified phrase with another specified phrase....
🌐
Reddit
reddit.com › r/learnpython › using replace() method
r/learnpython on Reddit: Using replace() method
February 27, 2024 -

Hi guys, I had a quick question about the exercise I was working on.

For using the replace() method and printing the result, we have to assign it to another variable and print that new variable.

sentence = sentence.replace(‘hey’, ‘hi’) print(sentence)

But for something such as the sort method we don’t need to assign it to a new variable and just use it straight up.

list = […] list.sort() print(list)

Why is it that some methods you need to assign it to a new variable, while others work while not assigning it to a new variable and the original is changed. Thank you.

Sorry about format, I’m on mobile.

🌐
Tutorialspoint
tutorialspoint.com › python › string_replace.htm
Python String replace() Method
The Python String replace() method replaces all occurrences of one substring in a string with another substring. This method is used to create another string by replacing some parts of the original string, whose gist might remain unmodified.
🌐
AskPython
askpython.com › python › string › python-replace-function
Python replace() function - AskPython
May 21, 2026 - This behavior mirrors how Python handles other string operations documented in the Python string find() method. ... Parameters: old - substring to find and replace new - replacement substring count - max replacements (default: -1 = all) Returns: new string with substitutions applied
🌐
Mimo
mimo.org › glossary › python › string-replace-method
Master Python's String Replace Method for Text Manipulation
Explore Python's string replace() method to update text seamlessly. Learn to replace substrings, fix user input, and process files with practical examples.
🌐
Programiz
programiz.com › python-programming › methods › string › replace
Python String replace()
The replace() method returns a copy of the string where the old substring is replaced with the new string.
🌐
Server Academy
serveracademy.com › blog › python-replace-function
Python Replace() Function Blog | Server Academy
November 14, 2024 - The method in Python is a powerful tool for working with strings, allowing you to replace parts of a string with new values. Whether you’re changing characters…
🌐
Python Reference
python-reference.readthedocs.io › en › latest › docs › str › replace.html
replace — Python Reference (The Right Way) 0.1 documentation
>>> "ABCAB".replace('AB', 'ab') 'abCab' >>> "ABCAB".replace('YZ', 'ab') 'ABCAB' >>> "ABCAB".replace('AB', 'ab', 1) 'abCAB' >>> "ABCAB".replace('AB', 'ab', 2) 'abCab'
🌐
Note.nkmk.me
note.nkmk.me › home › python
Replace Strings in Python: replace(), translate(), and Regex | note.nkmk.me
May 4, 2025 - In Python, you can replace strings using the replace() and translate() methods, or with regular expression functions like re.sub() and re.subn(). Additionally, you can replace substrings at specific p ...
Find elsewhere
🌐
Python Academy
python-academy.org › functions › replace
replace — Python Function Reference
A comprehensive guide to Python functions, with examples. Find out how the replace function works in Python. Return a copy of the string with all occurrences of substring old replaced by new.
🌐
freeCodeCamp
freecodecamp.org › news › python-string-replace-function-in-python-for-substring-substitution
Python String.Replace() – Function in Python for Substring Substitution
January 24, 2022 - When using the .replace() Python method, you are able to replace every instance of one specific character with a new one.
🌐
GeeksforGeeks
geeksforgeeks.org › python › python-string-replace
Python String replace() Method - GeeksforGeeks
July 7, 2026 - It returns a new string with the replacements applied, while the original string remains unchanged.
🌐
StrataScratch
stratascratch.com › blog › how-to-replace-a-character-in-a-python-string
How to Replace a Character in a Python String - StrataScratch
October 18, 2024 - Replacing characters in a string with a list comprehension? That sounds awkward! Actually, it isn’t because it’s one of the three steps required in total: ... To convert a string to a list, use the split() method with this generic syntax. string_variable = 'your string here' list_of_words = string_variable.split() Now, list comprehension. It’s a Python method of creating a new list by applying an expression to each item in a list.
🌐
Hyperskill
hyperskill.org › university › python › replace-method-in-python
Python replace() Method
July 17, 2024 - The Python replace method is a built-in string method used to replace occurrences of a given substring within a string with a new substring.
🌐
Real Python
realpython.com › replace-string-python
How to Replace a String in Python – Real Python
October 22, 2025 - As you can see, you can chain .replace() onto any string and provide the method with two arguments. The first is the string that you want to replace, and the second is the replacement. Note: Although the Python shell displays the result of .replace(), the string itself stays unchanged.
🌐
Analytics Vidhya
analyticsvidhya.com › home › beginner’s guide to replace() method in python
Beginner’s Guide to replace() Method in Python
April 15, 2024 - In Python, string Replace are immutable sequences of Unicode characters. The `replace()` method is a built-in function that allows you to substitute a specified phrase with another in a string.
🌐
YouTube
youtube.com › real python
Replacing a String In a String in Python - YouTube
This a preview of a video course about replacing strings in Python. If you’re looking for ways to remove or replace all or part of a string in Python, then t...
Published: August 24, 2023
Views: 1K
🌐
DigitalOcean
digitalocean.com › community › tutorials › python-string-replace
Python String replace() | DigitalOcean
August 3, 2022 - Technical tutorials, Q&A, events — This is an inclusive place where developers can find or lend support and discover new ways to contribute to the community.
🌐
Scaler
scaler.com › home › topics › python string replace() method
Python String replace() Method - Scaler Topics
April 19, 2023 - Replace function in Python is used for replacing a single character or substring with a new character/substring. Learn more on Scaler Topics.