Python Hello World
💡
Exercise 1

Setting Up 10 XP Easy

Ctrl+Enter Run Ctrl+S Save

Welcome to The Legend of Python! 🐍

The programming language we are learning is called Python. It was created by a developer named Guido van Rossum in the early 90s.

💡 Think of it like this: Python is like learning to write in a new language — but instead of talking to people, you're talking to computers! And Python is one of the easiest computer languages to learn.

Python is used EVERYWHERE in the real world:

  • 📊 Data analysis — Scientists use Python to study data
  • 🤖 Artificial Intelligence (AI) — ChatGPT was built with Python!
  • 🌐 Web development — Instagram and YouTube use Python
  • 🎮 Game development — You can make games with Python
  • 🚀 Space exploration — NASA uses Python!

We write Python code in files that end with .py — like main.py.

The panel on the right side 👉 is your code editor. That's where you'll write, run, and test your code. Let's try it!

📋 Instructions
Copy and paste this line of code into the editor: ```python print('Hi') ``` Then press the **Run** button and wait a moment. This should appear in the Terminal if you did it correctly: ``` Hi ``` You are now ready for the journey ahead! Press **Submit** and then **Next** to continue. Happy coding!
Just type: print('Hi') — that's it! The print() function displays whatever you put inside the parentheses.
main.py
Hi! I'm Rex 👋
Output
Ready. Press ▶ Run or Ctrl+Enter.