0Pricing
Coding for Kids · Lesson

How Much More?

Calculate the difference.

How Much More? is a free Coding for Kids lesson on CoddyKit — lesson 3 of 4. You can read the complete lesson below for free — then practise it hands-on in the browser with a built-in code editor and a 24/7 AI tutor. It is part of the Coding for Kids learning path, one of 4 lessons in the course, and your progress syncs across the web and the CoddyKit app.

How Much More? 🤔

You have some money, but not enough yet. How much MORE do you need? 🧮

Subtraction to the rescue! ➖

Subtracting Numbers ➖

Use the - sign to take away.

print(10 - 4)

Goal Minus Saved 📉

To find what's left, subtract saved from goal!

goal = 30
saved = 12
print(goal - saved)

The Difference 🔢

That answer is called the difference. Save it in a box!

goal = 30
saved = 12
left = goal - saved
print('You need', left, 'more')

A Friendly Message 😊

Tell the saver exactly how much is left!

left = 18
print('Save', left, 'more to win! 🎉')

What If You Have Enough? ✅

Use if so you don't show a number when you already reached the goal!

goal = 30
saved = 35
if saved >= goal:
    print('All done! 🥳')
else:
    print('Need', goal - saved, 'more')

Not Enough Yet 💪

Try it when you still need to save more.

goal = 50
saved = 20
if saved >= goal:
    print('Done!')
else:
    print('Need', goal - saved, 'more 💪')

Show With $ 💲

Add a dollar sign to the amount left.

left = 18
print('Still need: $' + str(left))

Halfway There? ➗

Are you halfway? Compare saved to half the goal!

goal = 30
saved = 18
if saved >= goal / 2:
    print('Over halfway! 🌟')

Days to Go 📅

If you save 3 each day, how many days until your goal? Use // for whole days!

left = 18
per_day = 3
print('Days left:', left // per_day)

Big Goal 🏔️

Try a bigger goal and see how much more you need!

goal = 100
saved = 65
print('Need', goal - saved, 'more!')

Quick Check ✅

How do you find how much more you need?

Difference Detective! 🏆

Nice work! You learned to:

  • Subtract with -
  • Find the difference 🔢
  • Use if to check progress ✅
  • Count days to your goal 📅

Next: build a full savings tracker! 🛠️

Frequently asked questions

Is the “How Much More?” lesson free?

Yes — the full text of “How Much More?” is free to read here on the web, and the Coding for Kids course includes 4 lessons in total. To practise it interactively (a built-in code editor and a 24/7 AI tutor) and unlock the rest of the Coding for Kids course, upgrade to CoddyKit PRO.

What will I learn in “How Much More?”?

Calculate the difference. You practise Coding for Kids with hands-on code you run directly in the browser, and a 24/7 AI tutor answers your questions as you work through the lesson.

Do I need any experience to start Coding for Kids?

No prior experience is required. Coding for Kids on CoddyKit is structured for beginners through advanced learners; this is — lesson 3 of 4, so you can start here or from the beginning and move at your own pace.

How long does the “How Much More?” lesson take?

Most CoddyKit lessons take about 5–10 minutes. Each one is bite-sized and interactive, so you make steady progress and pick up exactly where you left off across the web and the app.

Can I write and run code in this Coding for Kids lesson?

Yes. Every Coding for Kids lesson includes a built-in code editor, so you write and run real code right in your browser and get instant AI feedback — no local setup required.

All lessons in this course

  1. Adding Up Money
  2. Saving Goals
  3. How Much More?
  4. A Savings Tracker
← Back to Coding for Kids