Code Safari

Chapter 147·Beginner

What Python Is (and Your First Program)

01 / 06

The core idea

Python runs your instructions, top to bottom.

Python is a language for writing instructions a computer follows. An interpreter reads your file line by line and does what each line says — no separate build step.

What Python Is (and Your First Program) | Code Safari