I want to strip double quotes from:
string = \'\"\" \" \" \"\"\\\\1\" \" \"\" \"\"\'
to obtain:
string = \'\" \" \" \"\"\\\
If the quotes you want to strip are always going to be "first and last" as you said, then you could simply use:
string = string[1:-1]