vscode怎麼執行python程式碼
按 Ctrl Shift B 執行python程式碼。
前提是得配置taske.json
1、按下Ctrl Shift B,點選
##2 、點選建立 3、執行外部指令 4、建立完,取代裡面的內容為(注意command的要改成你自己python的安裝路徑){ // 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": "C:/Users/FSITQD/AppData/Local/Programs/Python/Python36-32/python", "args": [ "${file}" ], "group": { "kind": "build", "isDefault": true } } ] }
以上是vscode怎麼運行python程式碼的詳細內容。更多資訊請關注PHP中文網其他相關文章!