Remove char at specific index – python February 19, 2023 by Tarik Use slicing, rebuilding the string minus the index you want to remove: newstr = oldstr[:4] + oldstr[5:]