Python Setup
Python Install
- Install Python from https://python.org/
- Install Visual Studio Code from https://code.visualstudio.com/
- Install Python extension in VS Code from VS Code Marketplace
Check Python Installation
python --version
python -V
Python Command Line
C:\Users\Your Name>python
C:\Users\Your Name>py
C:\Users\Your Name>python
Python 3.13.5 (tags/v3.13.5:6cb20a2, Jun 11 2025, 16:15:46) [MSC v.1943 64 bit (AMD64)] on win32
Type "help", "copyright", "credits" or "license" for more information.
>>> print("Hello, World!")
tip
To quit the python command line interface:
exit()