how can i replace the double quotation marks with the stylistically correct quotation marks („ U+201e or “ U+201c ) according to German spelling.
example:
zitat = 'Laut Durkheim ist ein "soziologischer Tatbestand jede mehr oder weniger [...] unabhängiges Eigenleben besitzt"'
I've tried the code
import re
zitatnew = re.sub(r'"', r'[u+201e]', zitat)
print(zitatnew)
Laut Durkheim ist ein [u+201e]soziologischer Tatbestand jede mehr oder weniger [...] unabhängiges Eigenleben besitzt[u+201e]
How can i replace the double quotations marks with the correct one using unicode?
Maybe one of you can help me. P.S. I'm sorry for my bad english!