Comment exécuter un programme Python via vscode :
Configurez d'abord tâches.json :
Utilisez la touche de raccourci "ctrl+shifit+p" pour ouvrez la colonne de recherche. Entrez « Tâches : configurer Task Runner » pour ouvrir tâches.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}"] }
Une fois la configuration terminée, utilisez la touche de raccourci « ctrl+shift+B » pour exécuter le fichier .py.
Articles et tutoriels connexes recommandés : tutoriel vscode
Ce qui précède est le contenu détaillé de. pour plus d'informations, suivez d'autres articles connexes sur le site Web de PHP en chinois!