Вы можете использовать re.sub , который соответствует одинарным или двойным кавычкам через регулярное выражение r"[\"\']"
и заменяет их пустой строкой
In [5]: re.sub(r"[\"\']",'','"This is the double quotes in the string"')
Out[5]: 'This is the double quotes in the string'
In [6]: re.sub(r"[\"\']",'',"''")
Out[6]: ''
In [10]: re.sub(r"[\"\']",'','""')
Out[10]: ''
Другой подход с использованием string.replace
, где мы заменяем одинарные и двойные кавычки пустой строкой
In [4]: def replace_quotes(s):
...:
...: return s.replace('"','').replace("'","")
...:
In [5]: replace_quotes("This is the double quotes in the string")
Out[5]: 'This is the double quotes in the string'
In [6]: replace_quotes("''")
Out[6]: ''
In [7]: replace_quotes('""')
Out[7]: ''