1#A raw string considers backslash as literal instead of an escape character
2print(r"C\Users\MyName\Desktop")
3#Without the r in front you will have to escape the \ with another \
4print("C\\Users\\MyName\\Desktop")
5#Both will print the same thing "C\Users\MyName\Desktop"