Python and Thonny

A simple guide for a new coder: what Python is, what Thonny is, and how the computer follows your code.

πŸ§’
β†’
πŸ’»
β†’
🐍
β†’
πŸ€–
You write instructions. Thonny helps you run them. Python tells the computer what to do.
🐍

Python is a coding language

It is a way to write instructions that a computer can understand.

πŸ’»

Thonny is where you type Python

It is a beginner-friendly coding app with a Run button and simple error messages.

▢️

Run means β€œtry my instructions”

When you press Run, the computer follows your code step by step.

Click Next to learn each part.

What is Python?
the language
Python is a language for giving exact instructions to a computer. It is not a snake here. It is code.
print("Hello, computer!")
Output will show here.
Press Run. Python will make the computer print a message.
+ show code (Python)
print("Hello, computer!") # print means: show this text on the screen.
What is Thonny?
the beginner tool
Thonny is the app where a beginner can type Python, press Run, and see what happened without fighting a complicated setup.
✏️

Write code

Type Python instructions in one clear place.

▢️

Run code

Click one button to try the program.

πŸ”Ž

See steps

Watch the program move one line at a time.

🧯

Find mistakes

Thonny helps show where something went wrong.

Thonny is like training wheels for Python.
+ show simple example
# In Thonny, type this and press Run: name = "Alex" print("Hi " + name)
How code reaches the computer
the path
The computer does not magically know what you mean. Your code travels through a simple path.
You type code
β†’
Thonny runs it
β†’
Python translates
β†’
Computer obeys
⌨️
Press Run to watch the path.
+ show the idea as code
# You write Python code. # Thonny sends it to Python. # Python tells the computer what action to take.
Why start with Thonny?
less frustration
A new coder should spend brain power learning code, not fighting setup screens, extensions, folders, and confusing toolbars.
βœ…

Simple screen

Fewer buttons means fewer distractions.

βœ…

Python included

Less installation mess before writing the first program.

βœ…

Step-by-step mode

Great for seeing what the computer is doing line by line.

Later, after the basics, VS Code can make sense for bigger projects.
Slide 1 of 5