When printinga a string containing a backslash, I expect the backslash (\) to stay untouched.
test1 = "This is a \ test String?"
print(test1)
'This is a \\ test String?'
test2 = "This is a '\' test String?"
print(test2)
"This is a '' test String?"
What I expect is "This is a \ test String!" or "This is a '\' test String!" respectively. How can I achieve that?