What's the issue with this code snippet?

We need to put an r before the 'C:\User'We need to convert path into a string before we print itWe can't create an empty string with ""We can't use the += operator with strings

That's it! We need to make the literal a raw string or escape the backslash with another \ sign.

Not quite! We need to make the literal a raw string or escape the backslash with another \ sign.