>>> sample7 = """including 'quote1' "quote2" and 'quote3" """
>>> sample7
'including \'quote1\' "quote2" and \'quote3" '
>>> print sample7
including 'quote1' "quote2" and 'quote3"
此处,字符串sample7
内的引号已被三引号正确转义。但是,
>>> sample4 = """c:\ntext\text\file.rtf"""
>>> sample4
'c:\ntext\text\x0cile.rtf'
>>> print sample4
c:
text extile.rtf
sample4
中的反斜杠未被三重引号正确转义。这是为什么?应该怎么做才能自动逃脱。像,
String file = @"c:\ntext\text\file.rtf";
在C#中。
PS。另外,我如何获得\x0cile.rtf
而不是\file.rtf
?
感谢。
答案 0 :(得分:7)
Python正在评估\ f只使用原始字符串
r"c:\ntext\text\file.rtf"