How to remove the character of a string in Python
In this tutorial, we are going to learn about how to remove the specific character of a given string in Python.
Removing the specific character
To remove the specific character of a string, we can use the built-in replace()
method in Python.
Here is an example, that removes the character f
from the following string:
str = "Hello f world"
newStr = str.replace("f", "")
print(newStr) # Hello world
In the example above, we have passed "f", ""
as an arguments to the replace()
method. so it returns the copy of the original string by removing the character f
.