I get this error in Eclipse while working on "Byte of Python"
It says that the error is displayed in two lines:
source = ["C:\\My Documents", "C:\\Code"]
and
zip_command = "zip -qr {0} {1}".format(target, ‚ ‚.join(source))
I cannot understand what I'm doing wrong here.
Here's the complete error:
SyntaxError: non-UTF-8 code starting with '\ x82' in line x, but no declared encoding; See http://python.org/dev/peps/pep-0263/ for more details.
Elmer source
share