1 import requests 2 3 html=requests.get('http://www.12306.cn/mormhweb/') 4 5 print html.text
刚开始是这么写的,运行时一直弹出错误
之后加上了
html.encoding='utf-8'
完美解决