Chuyển đổi Unicode sang ASCII mà không gặp lỗi trong Python
Mã của tôi chỉ xóa một trang web, sau đó chuyển đổi nó thành Unicode. html = urllib.urlopen(link).read() html.encode("utf8","ignore") self.response.out.write(html) Nhưng tôi nhận được một UnicodeDecodeError: Traceback (most recent call last): File "/Applications/GoogleAppEngineLauncher.app/Contents/Resources/GoogleAppEngine-default.bundle/Contents/Resources/google_appengine/google/appengine/ext/webapp/__init__.py", line 507, in __call__ handler.get(*groups) File "/Users/greg/clounce/main.py", line 55, in get html.encode("utf8","ignore") UnicodeDecodeError: 'ascii' codec can't decode …