标签: python unicode runtime-error
在python命令行中,我写了这个命令。
g_data = soup.find_all("div", {"class": "info"}) for item in g_data: print(item.contents[0].text)
然而它没有用。
程序说“UnicodeEncodeError:'cp949'编解码器不能编码字符 '\ u20a9'位置90:非法多字节序列“。
我该怎么办? 给我一些建议。