背景
- 中文网页显示时,其中的中文显示异常(非中文)
- 具体见 https://editor.csdn.net/md/?articleId=109079157
解决办法
- 见 https://editor.csdn.net/md/?articleId=109079157
- 新办法: 待汉化的sublime text 4, 不需要上述链接中提到的办法,直接显示即可。
#
# 测试sublime text 下模块工作是否正常
# 其中,中文显示不需要导入其它模块,或特别处理
# 此sublime text 为汉化版
# 以下均可以正常运行、显示
from bs4 import BeautifulSoup
from urllib.request import urlopen
print('Chinese input and display:', '你好')
url='http://www.baidu.com'
html = urlopen(url)
soup = BeautifulSoup(html, 'lxml')
print(soup.prettify())