问答详情
源自:3-6 Python中raw字符串与多行字符串

将字符串转换为raw以后,转义字符串就无效了吗?

print(r'''"To be, or not to be": that is the question.

Whether it's nobler in the mind to suffer.''')

换行的那个转义字符\n,写了之后也不换行,而是直接输出\n了

提问者:LL527788 2021-06-24 17:30

个回答

  • 慕码人451688
    2021-06-25 23:05:25

    是的,在字符串前面加转义无效符r会使当前字符串的转义字符无效化