Vs code 下设置python tasks.json
{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "2.0.0",
"tasks": [
{
"label": "python",
"type": "shell",
"command": "python",
"args": [
"${file}"
],
"presentation": {
"reveal": "always",
"panel": "shared"
},
"group": {
"kind": "build",
"isDefault": true
},
"options": {
"env": {
"PYTHONIOENCODING": "UTF-8"
}
}
}
]
}
Powered By D&J (URL:http://www.cnblogs.com/Areas/)
浙公网安备 33010602011771号