私はPythonの初心者です。エラー:UnicodeEncodeError: 'gbk'コーデックが文字をエンコードできません
from bs4 import BeautifulSoup
import requests
url = "http://www.google.com"
response = requests.get(url)
soup = BeautifulSoup(response.text, "html.parser")
links = soup.find_all("a")
for link in links:
print(link.text)
Windowsのpowershellでこの.pyファイルを実行すると、print(link.text)によって次のエラーが発生します。
error: UnicodeEncodeError: 'gbk' codec can't encode charactor '\xbb' in position 5:
illegal multibyte sequence.
は、私はエラーがいくつかの漢字によって引き起こされる知っている、と私は「デコード」を使用するか、「無視する」必要があるようです思えるが、私は自分のコードを修正する方法がわかりません。助けてください!ありがとう!