Python3修改输出编码

import io,sys

sys.stdout = io.TextIOWrapper(sys.stdout.buffer, encoding="gb18030")
评论