🐸

Hoppy Speaks

Python Basicspython-basics-01-hoppy-speaks
Reward: 50 XP
|

Hoppy Wakes Up

Hoppy opens his eyes in a strange digital forest. He wants to say hello, but no sound comes out.

In this world, if you want to speak, you must use a spell called print.

Look to the right! The top box is your Editor (where you write code). The bottom box is the Terminal (where results appear).

The Spell

# This is a comment. The computer ignores it.
print("Hello World")

This line tells the computer to show "Hello World". The line starting with # is a comment—it's just a note for humans!

Your Mission

1
Say Hi

Use print to make Hoppy say "I am Hoppy".

Quotes matter

Don't forget the quotes "" around the text!

How to Run

You need to write your code in the editor on the right, click the Run button in the upper right corner to execute the code, and the results will be displayed in the terminal at the bottom right.

Suggested Solution
Click to expand
Here is the correct spell:
print("I am Hoppy")
Advanced Tips
Want more? Click to expand

Did you know print() can say multiple things at once?

print("Hello", "World")

Python will automatically put a space between them. Try it out!

pymain.py
Loading...
Terminal
Terminal
Ready to run...