vscode를 통해 Python 프로그램을 실행하는 방법:
tasks.json을 먼저 구성하세요:
단축키 사용" ctrl+shift+p"를 눌러 검색창을 엽니다. "Tasks: Configure Task Runner"를 입력하여 task.json을 엽니다
{ "version": "0.1.0", // The command is tsc. Assumes that tsc has been installed using npm install -g typescript "command": "C:/Python27/python.exe", // The command is a shell script "isShellCommand": true, // Show the output window only if unrecognized errors occur. "showOutput": "always", // args is the HelloWorld program to compile. "args": ["${file}"] }
구성이 완료된 후 단축키 "ctrl+shift+B"를 사용하여 .py 파일을 실행합니다.
추천 관련 기사 및 튜토리얼: vscode 튜토리얼
위 내용은 vscode에서 .py 파일을 실행하는 방법의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!