VSCODE+python3中文亂碼問題

被這個問題困擾了好久。各種百度各種嘗試。最後在知乎找到了答案。 修改task.json,添加option那一坨:

{      "version": "0.1.0",      "command": "python",      "isShellCommand": true,      "args": ["${file}"],      "showOutput": "always",      "options": {          "env":{              "PYTHONIOENCODING": "UTF-8"            }        }  }

參考: https://www.zhihu.com/question/41282749