#Use the syntax r"" to treat backslash () as a literal character, and #not as an escape character. raw_text = r"abc123" print(raw_text) OUTPUT abc123