I want it to print
this is '(single quote) and "(double quote)
I use the following (I want to use the raw string 'r' here)
a=r'this is \'(single quote) and "(double quote)'
but he prints
this is \'(single quote) and "(double quote)
What is the correct way to escape 'in the source line?
source
share