Answers for "remove all of a certain letter in a string in python"

15

take off character in python string

s = 'abc12321cba'

print(s.replace('a', ''))
Posted by: Guest on August-10-2020
8

delete certain characters from a string python

for char in line:
    if char in " ?.!/;:":
        line.replace(char,'')
Posted by: Guest on April-08-2020
1

remove occurrence in string pytthon

str="it is icy"
print str.replace("i", "")
Posted by: Guest on June-26-2020

Code answers related to "remove all of a certain letter in a string in python"

Python Answers by Framework

Browse Popular Code Answers by Language