I was trying to figure out how to remove only a certain character from a string that appears more than once.
Example:
>>>x = 'a,b,c,d'
>>>x = x.someremovingfunction(',', 3)
>>>print(x)
'a,b,cd'
If anyone can help, that would be greatly appreciated!