三重报价逃避歧义

时间:2011-03-08 14:52:40

标签: python string

>>> 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

感谢。

1 个答案:

答案 0 :(得分:7)

Python正在评估\ f只使用原始字符串

r"c:\ntext\text\file.rtf"