Instagram
youtube
Facebook
Twitter

Remove a Given Character from a String

A Python program to remove all occurrences of a specific character from a string using the replace() function.

Explanation in Points:

  1. Take Input: Get the string and the character to remove from the user.
     
  2. Remove Character: Use replace(char_to_remove, "") to remove all occurrences.
     
  3. Store Result: Save the modified string in modified_string.
     
  4. Display Output: Print the updated string.

 

Program:

string = input("Enter a string: ")

char_to_remove = input("Enter the character to remove: ")

modified_string = string.replace(char_to_remove, "")

print("String after removal:", modified_string)