How to run a python program.
Acess the Python Website
Download the latest version.
Follow the instalation process until the end with the default configuration.
Open Visual Studio Code and install the Python extension.
Create a file named "helloworld.py" containing the code:
print('Hello World')
Run the command below in the terminal:
python .\helloworld.py
The message will be printed with success.