I have a string, example:
s = \"this is a string, a\"
Where a \',\' (comma) will always be the 3rd to the last character, aka
\',\'
Python strings are immutable. This means that you must create at least 1 new string in order to remove the comma, as opposed to editing the string in place in a language like C.