Answer
A normal string can be converted to normal string by writing r or R before the start of the string, for example
rawString = r"hello \ world"
the string "hello \ world" will be converted to raw string and \ will be treated as normal character.
Work Step by Step
Same as above.