I want to input html document into my python.
I get this error:
UnicodeDecodeError: 'cp950' codec can't decode byte 0xbb in position
362: illegal multibyte sequence
when using this code:
from bs4 import BeautifulSoup
soup = BeautifulSoup(open(xxx.html))
print(soup)
What am I doing wrong?