Course Content
Introduce Python
Welcome to the amazing world of coding! In our first lesson, we're going to meet a new friend called Python.
0/5
Python Programming Essentials: Code Your Way to Success

    Before we can start giving instructions to the computer, we first need to set up our “coding workshop” or environment. Don’t worry, you only have to do this once!

    What Tools Do We Need?

    We need two main tools to start our coding adventure.

    1. Python Interpreter: This is like a “translator.” It takes our Python code (which we can read) and translates it into a language the computer can understand.
    2. IDE (Integrated Development Environment): This is a fancy name for a smart text editor made for coding. It helps us by coloring our code and spotting mistakes. We will use Visual Studio Code (VS Code), one of the most popular ones!

    Part 1: How to Install Everything

    Follow these steps to get your computer ready.

    Step 1: Install Python (The Translator)

    1. Go to the official Python website: python.org.
    2. Click on the “Downloads” section. The website should automatically show you the best version for your computer.
    3. Click the big yellow button to download the installer file.
    4. Open the file you just downloaded.
    5. ** VERY IMPORTANT! ** On the first window that pops up, check the box at the bottom that says Add Python.exe to PATH. This step is super important!
    6. After checking the box, click Install Now and wait for it to finish.

    Step 2: Install VS Code (The Smart Notepad)

    1. Go to the official Visual Studio Code website: code.visualstudio.com.
    2. The website will show a big blue button to download it. Click it!
    3. Open the downloaded file and follow the instructions. Just clicking “Next” through all the steps is perfectly fine.

    Step 3: Connect Python and VS Code

    Now, let’s teach our smart notepad how to understand Python.

    1. Open the VS Code application.
    2. On the left side, there is a bar with icons. Find the one that looks like four squares stacked together. This is the Extensions marketplace.
    3. In the search bar at the top, type Python.
    4. Look for the extension named “Python” from Microsoft. It will be the first and most popular one.
    5. Click the blue Install button next to it.