So führen Sie ein Python-Programm über vscode aus:
Konfigurieren Sie zuerst task.json:
Verwenden Sie die Tastenkombination „Strg+Umschalt+P“, um Öffnen Sie die Suchspalte. Geben Sie „Tasks: Task Runner konfigurieren“ ein, um task.json zu öffnen
{ "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}"] }
Nachdem die Konfiguration abgeschlossen ist, verwenden Sie die Tastenkombination „Strg+Umschalt+B“, um die .py-Datei auszuführen.
Empfohlene verwandte Artikel und Tutorials: Vscode-Tutorial
Das obige ist der detaillierte Inhalt vonSo führen Sie eine .py-Datei in vscode aus. Für weitere Informationen folgen Sie bitte anderen verwandten Artikeln auf der PHP chinesischen Website!