Lesson 1 of 12

What Is Python? 🐍

🎯 Grades 6–8 ⏱ ~25 minutes 💚 Intermediate

What You'll Learn

  • Learn what Python is and where it is used
  • Set up Python on your computer
  • Understand what a programming language is

Python Is Everywhere

Python is one of the most popular programming languages in the world. It is used by NASA, Google, Netflix, Instagram, and thousands of other companies. Scientists use it to analyze data. Game makers use it to build games. And you are about to learn it!

Companies that use Python
🆕
Fun Fact

Python was invented in 1991 by a Dutch programmer named Guido van Rossum. He named it after Monty Python, a British comedy TV show!

What Is a Programming Language?

Computers only understand 1s and 0s (binary). A programming language is a translator — you write instructions in human-readable code, and the computer converts it to the 1s and 0s it needs.

There are hundreds of programming languages. Python is great for beginners because:

  • 👀 It reads almost like plain English
  • 👔 Less code needed compared to other languages
  • 😄 The community is huge and helpful
  • 🚀 Used in AI, web, science, automation — almost everything!

Setting Up Python

To run Python on your computer:

  1. Go to python.org and click Download Python 3
  2. Run the installer — make sure to check "Add Python to PATH"
  3. Open your terminal (Command Prompt on Windows, Terminal on Mac) and type python --version
  4. If you see a version number, you are ready to go!
💡
Use an Online Editor

Not ready to install? Try replit.com or trinket.io — free online Python editors that run right in your browser!

🔧Set Up Your Environment

Today your only goal is to get Python running. Try one of these:

  1. Install Python from python.org and open IDLE (comes with Python)
  2. OR go to replit.com, create a free account, and start a new Python Repl

Either way, you should see a place where you can type code. Tomorrow we write our first program!

Quick Check

Who invented Python?

ABill Gates
BGuido van Rossum
CLinus Torvalds

Why is Python good for beginners?

AIt requires no computer
BIt reads almost like plain English
CIt only runs on Windows

What do you type in the terminal to check your Python version?

Apython install
Bpython --version
Cpip check
← PreviousHello, World! →