LESSON 1

What is Python?

Learning objective: Understand what Python is and why it is popular for beginners.

Understand

Python is a beginner-friendly programming language used everywhere from web apps to data science.

Python is known for readable code that looks close to plain English. It is used for automation, data analysis, websites, and AI. Its simple syntax makes it a great first language.

Analogy: Python is like a friendly first bicycle: easy to start on, but capable of taking you far.

See It in Action

The classic first program:

print("Hello, Bynteq!")
How it works: print() displays text on the screen — the simplest way to see your Python code run.

Try It Yourself

  1. Install Python or open an online Python editor.
  2. Type a print() statement.
  3. Run it and see the output.

Quick Quiz

What is Python especially known for?

Challenge

Write a program that prints your name and your goal for learning Python.

Success condition: Your program prints two lines of your own text.