📜  如何阅读反斜杠斜杠python代码示例

📅  最后修改于: 2022-03-11 14:45:43.616000             🧑  作者: Mango

代码示例1
#Use the syntax r"\" to treat backslash (\) as a literal character, and 
#not as an escape character.

raw_text = r"abc\123"

print(raw_text)
OUTPUT
abc\123