0Pricing
Coding for Kids · Lesson

Showing the Result

Print the conversion.

Showing the Result is a free Coding for Kids lesson on CoddyKit — lesson 4 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.

Show It Off! 🎉

Hooray! 👋 We can ask for a temperature AND convert it. Now let's make the answer look amazing! ✨

A great program shows results clearly and with style! 😎

print("Let's make beautiful results! 🎨")

Plain Printing 📄

The simplest way is to print the answer with a label. 📄

Commas in print() put spaces between the parts! 👍

c = 25
f = c * 9 / 5 + 32
print("Fahrenheit:", f)

A Full Sentence 💬

Let's make a whole sentence so it reads nicely! 📖

c = 25
f = c * 9 / 5 + 32
print(c, "degrees Celsius is", f, "degrees Fahrenheit 🌡️")

Magic f-strings ✨

Python has a SUPER cool trick called an f-string! 🪄

Put f before the quotes, then drop variables inside curly braces { }!

c = 25
f = c * 9 / 5 + 32
print(f"{c} C equals {f} F! 🌟")

Tidy with round() 🔵

If the result is messy like 77.000001, use round() to clean it up! ✨

c = 23
f = round(c * 9 / 5 + 32, 1)
print(f"{c} C is {f} F 🧼")

Add Fun Emojis 🎈

Emojis make results feel friendly and fun! 🥳

Pick a hot emoji for high numbers and a cold one for low numbers!

c = 35
f = c * 9 / 5 + 32
print(f"It is {f} F 🔥🥵")

Hot or Cold Message 🧣

Let's add an if to give a smart message based on the temperature! 🧠

c = 5
if c < 10:
    print(f"{c} C is chilly! Bring a jacket 🧥")
else:
    print(f"{c} C is nice and warm! ☀️")

The Full Program 🌟

Let's combine EVERYTHING: ask, convert, and show beautifully! 🎁

This is a real temperature converter! 🎉

c = float(input("Celsius: "))
f = round(c * 9 / 5 + 32, 1)
print(f"{c} C is {f} F 🌡️")

Both Conversions 🔄

We can show BOTH directions at once to be extra helpful! 🤝

c = 30
f = round(c * 9 / 5 + 32, 1)
back = round((f - 32) * 5 / 9, 1)
print(f"{c} C -> {f} F -> {back} C 🔄")

A Pretty Header 🖼️

Add a title line to make your program look professional! 😎

Stars and lines make great decorations! ✨

print("=== TEMPERATURE CONVERTER === 🌡️")
c = 20
f = c * 9 / 5 + 32
print(f"Result: {c} C = {f} F")

Converter Champion! 🏆

You built a complete Temperature Converter! 🎉🎉

  • Ask with input() ⌨️
  • Convert with the formula 🪄
  • Show with f-strings
  • Tidy with round() 🔵

You are a real programmer now! 💪

print("My converter is complete! 🥇🌡️")

Quick Check ✅

Last question of the course! You've got this! 🧠

Recap Time! 🎒

You finished the Temperature Converter course! 🌟🎉

  • Use commas or f-strings to print results 💬
  • round() keeps numbers tidy 🔵
  • Add emojis and if messages for fun 🎈
  • You can ask, convert, AND show! 🏆

Amazing work, young coder! 🚀

print("Temperature Converter course done! 🎓🌡️")

Frequently asked questions

Is the “Showing the Result” lesson free?

Yes — the full text of “Showing the Result” 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 “Showing the Result”?

Print the conversion. 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 4 of 4, so you can start here or from the beginning and move at your own pace.

How long does the “Showing the Result” 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. Celsius and Fahrenheit
  2. The Formula
  3. Asking the User
  4. Showing the Result
← Back to Coding for Kids