promptdojo_

Read the names in a tiny tool — step 1 of 8

Read the names in a tiny tool

This is the first moment where code appears. Do not panic and do not try to memorize rules.

Treat the code like a labeled note.

task = "follow-up email"
minutes_saved = 12
repeats_per_week = 5

Each line gives the tool a name it can reuse later. That is all a variable is for now: a name attached to a value.

Why this matters for AI work

When you ask AI to build a tool, it often gives you a small script. The script will have names like task, customer_email, draft, score, limit, or summary.

If you can read the names, you can ask better questions:

  • what does this tool know?
  • what did it calculate?
  • what sentence will it print?
  • what can I safely change?

That is not “learning Python” in the school sense. That is staying in charge of the thing AI made for you.

The first move

Hit Run.

Do not edit anything yet. Just run the tool and read the sentence it prints. Then we will trace where each part of the sentence came from.