当前位置: 代码迷 >> python >> 三引号转义歧义
  详细解决方案

三引号转义歧义

热度:8   发布时间:2023-07-14 08:46:26.0
>>> 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中, sample4中的反斜杠没有正确地转义。 这是为什么? 应该采取什么措施才能自动转义。 就像是,

String file = @"c:\ntext\text\file.rtf";

在C#中。

PS。 另外,我如何获得\\x0cile.rtf而不是\\file.rtf

谢谢。

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

r"c:\ntext\text\file.rtf"
  相关解决方案