(unicode error) ‘unicodeescape’ codec can’t decode bytes in position 2-3: truncated \UXXXXXXXX escape
(unicode error) ‘unicodeescape’ codec can’t decode bytes in position 2-3: truncated \UXXXXXXXX escape
Share
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
You must login to ask question.
This error occurs because you are using a normal string as a path. You can use one of the three following solutions to fix your problem:
1:
Just put
r
before your normal string it converts normal string to raw string:2:
3: