String mentah python untuk mengabaikan urutan pelarian

>>> print("This is \x61 \ngood example")
This is a
good example
>>> print(r"This is \x61 \ngood example")
This is \x61 \ngood example
SAMER SAEID