I'd like to save the following characters 'bar"
as a string variable, but it seems to be more complicated than I thought :
foo = 'bar"
is not a valid string.foo = ''bar"'
is not a valid string either.foo = '''bar"''
is still not valid.foo = ''''bar"'''
actually saves'\'bar"'
What is the proper syntax in this case?