unicode error python

Solutions on MaxInterview for unicode error python by the best coders in the world

showing results for - "unicode error python"
Vanessa
31 Jan 2017
1# You either need to duplicate all backslashes:
2"C:\\Users\\Eric\\Desktop\\beeline.txt"
3# Or prefix the string with r (to produce a raw string):
4r"C:\Users\Eric\Desktop\beeline.txt"