给标准输出设置编码:
import io,sys
sys.stdout = io.TextIOWrapper(sys.stdout.detach(),encoding='utf-8')
sys.stderr = io.TextIOWrapper(sys.stderr.detach(),encoding='utf-8')
在程序中加入这几行即可
VScode下也可以这样做
参考:https://blog.csdn.net/houzhiguo/article/details/55259490#commentsedit