Skip to content

Instantly share code, notes, and snippets.

@moskytw
Last active October 3, 2016 15:40
Show Gist options
  • Save moskytw/7e66e29be3cc592fefa59356b761c042 to your computer and use it in GitHub Desktop.
Save moskytw/7e66e29be3cc592fefa59356b761c042 to your computer and use it in GitHub Desktop.
>>> print('C:\Users\Mosky\Desktop')
File "<stdin>", line 1
SyntaxError: (unicode error) 'unicodeescape' codec can't decode bytes in position 2-3: truncated \UXXXXXXXX escape
>>> print(r'C:\Users\Mosky\Desktop')
C:\Users\Mosky\Desktop
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment