https://www.datacamp.com/tutorial/setting-up-vscode-python
The Python extension is all you need. You are welcome to install any other extensions that you want to try.
File
->New Text File
print("hello")
s
) and name the file main.py
Select Interpreter
in the bottom right
python3 main.py
python main.py
If you see the word "hello" appear in the console, then everything is working.