Python正規表現を使用して、先頭と末尾の任意の引用文字列を個別に任意の文字列に置き換えるにはどうすればよいですか?
サンプル入力文字列
This is a "quote" and here's another "quote"
また
This is a “quote&rdquo" and here's another “quote”
サンプル出力文字列
This is a “quote” and here's another “quote”
また
This is a <span>"quote"</span> and here's another <span>"quote"</span>