Problem:
I was trying to remove all occurrences of a character in a string python but I failed. The code I wrote is:
def DeletChar(e, b) :
counts = e.count(b)
e = list(e)
while counts :
e.remove(b)
counts -= 1
print(e)
if __name__ == '__main__' :
e = "geeksforgeeks"
DeletChar(e,'g')
The output is:
['e', 'e', 'k', 's', 'f', 'o', 'r', 'e', 'e', 'k', 's']
how to solve this problem I am a newbee please help