#A raw string considers backslash as literal instead of an escape character
print(r"CUsersMyNameDesktop")
#Without the r in front you will have to escape the with another
print("CUsersMyNameDesktop")
#Both will print the same thing "CUsersMyNameDesktop"