Hiện tại mình đang làm scraping web, nhưng khi đọc được đoạn text tiếng việt thì không in ra được tiếng việt trong terminal. Đây là đoạn code của mình
import string
from urllib.request import urlopen
from bs4 import BeautifulSoup
html = urlopen("http://www.gocnhinalan.com/bai-tieng-viet/ao-vong-mua-thu.html")
bsObj = BeautifulSoup(html)
article_content = bsObj.findAll(id="article_content")
for bunch in article_content:
# in ra cho nay
print((bunch.get_text().encode('utf-8')))