Step 1: Set Up Your Python Environment
- Visit python.org/downloads and download the latest Python 3.14.3 installer for your OS.
Windows:
- Run the
.exe installer.
- Important: Check 'Add Python to PATH' during installation.
macOS:
- Run the
.pkg installer and follow prompts.
Linux: Most distros have Python; install via package manager (e.g., sudo apt install python3 on Ubuntu).
- Open a terminal/command prompt and verify:
Expected: Python 3.14.3
- Launch IDLE (search for it in your apps) and enter interactive mode:
>>> print('Hello, World!')
Hello, World!
- Save your first script: File > New File, paste the print statement, save as
hello.py, Run > Run Module (F5).