Python에서 오류없이 유니 코드를 ASCII로 변환
내 코드는 웹 페이지를 긁은 다음 유니 코드로 변환합니다. html = urllib.urlopen(link).read() html.encode("utf8","ignore") self.response.out.write(html) 그러나 나는 얻는다 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 byte 0xa0 in position 2818: ordinal not in …