So I have been looking online trying to find how can I compile my python program using python 3 on visual studio code. However, it seems that they are not much information out there regarding how to do it. Below is what my task.json file looks like. Is there something I am doing?
{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "0.1.0",
"command": "Python",
"isShellCommand": true,
"args": ["${file}"],
"showOutput": "always"
}
Any advise will be great thank you

