Goals: Install Python and VS Code, learn fundamentals (types, control flow, functions), use IDE features (linting, formatting), and build good coding habits.
Installation And Setup
Download Python from python.org (use latest Python 3).
Windows: check "Add Python to PATH" during install.
Verify: terminal -> python --version or python3 --version (mac/linux).
VS Code recommended as editor; install Python extension by Microsoft.
Use integrated terminal (Ctrl+`) to run scripts: python app.py (Windows) or python3 app.py (mac/linux).
VS Code Features And Extensions
Python extension adds: linting, debugging, autocompletion, formatting, unit testing, snippets.