Python Raw String pour ignorer la séquence d'échappement
>>> 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