strip a character from a string python code example

Example 1: delete certain characters from a string python

for char in line:
    if char in " ?.!/;:":
        line.replace(char,'')

Example 2: python strip characters

# Python3 program to demonstrate the use of 
# strip() method   
  
string = " python strip method test " 
  
# prints the string without stripping 
print(string)  
  
# prints the string by removing leading and trailing whitespaces 
print(string.strip())    
  
# prints the string by removing strip 
print(string.strip(' strip')) 
Output:
 python strip method test 
python strip method test
python method test

Example 3: python remove specific character from string

s="Hello$ Python3$"s1=s.replace("$","",1)print (s1)#Output:Hello Python3$