I have a string that has two \"0\" (str) in it and I want to remove only the \"0\" (str) at index 4
I have tried calling .replace but obviously that removes all \"0\
This is my generic solution for any string s and any index i:
s
i
def remove_at(i, s): return s[:i] + s[i+1:]