最新回答 / 慕数据1975426
1.是因为网络 2.还是编码问题python3的话可以试试这个在html_outputer里修改如下:#coding utf-8class HtmlOutputer(object): def __init__(self): self.datas = [] def collect_data(self, data): if data is None: return self.datas.append(data) ...
2016-07-14