Python Programming Examples Tutorial Index

Python String Programs

To remove characters from a string means to delete one or more characters from the string. This can be done in several ways, depending on the specific requirements of the task. This tutorial explains different ways to remove characters from a string in Python.



The replace(), translate(), or join() functions can be used to remove characters from a string in Python.

Remove Characters From a String Using replace() Function

Here's an example using replace():

Example Program:

string = "Hello, world!"
char_to_remove = "!"
new_string = string.replace(char_to_remove, "")
print(new_string) # Output: "Hello, world"

The above program will output the string "Hello, world", with the exclamation point removed.

The replace() function can also remove multiple characters at once by providing a string of characters to replace as the first argument and an empty string as the second argument. For example:

Example Program:

string = "Hello, World!"
string = string.replace("HW", "")
print(s)  # Output: "ello, orld!"

Remove Characters From a String Using translate() Function

Another way to remove specific characters from a string is to use the translate() function and a translation table. Here's an example:

Example Program:

import string

string = "Hello, World!"
translator = str.maketrans('', '', 'HW')
string = string.translate(translator)
print(s)  # Output: "ello, orld!"

In the above example, the translation table is created using str.maketrans() with an empty string as the first two arguments and the string 'HW' as the third argument. This creates a table that maps the characters 'H' and 'W' to None, indicating that they should be deleted.

The translate() method is then called on the string string with the translation table as an argument, and the resulting string is printed.

Remove Characters From a String Using join() Function

To replace characters in a string using the join() method in Python, list comprehension can create a new list of characters with the desired replacements. Then, the join() method can be used to join the list of elements into a single string.

In simple terms, The join() function can remove characters from a string by splitting it into lists of individual characters, filtering out unwanted characters, and then joining the remaining characters back into a single string.

Example Program:

s = "Hello, World!"
s = ''.join([c for c in s if c not in 'HW'])
print(s)  # Output: "ello, orld!"

The above program first splits the string s into a list of individual characters using a list comprehension, then filters out the characters 'H' and 'W' using an if clause, and finally joins the remaining characters back into a string using join().



Found This Page Useful? Share It!
Get the Latest Tutorials and Updates
Join us on Telegram