最佳答案
当我创建一个包含反斜杠的字符串时,它们会被复制:
>>> my_string = "why\does\it\happen?"
>>> my_string
'why\\does\\it\\happen?'
为什么?