seed: curriculum content

This commit is contained in:
2026-05-07 14:32:44 +00:00
parent 9258534803
commit ec76f4f56b
100 changed files with 2846 additions and 0 deletions

View File

@@ -0,0 +1,35 @@
---
type: challenge
title: "The Greeting"
xp: 25
duration: 15
difficulty: 1
---
# The Greeting
> **[INCOMING — Mission Control, Earth]**
>
> Cadet, your first Python. Implement a function called `greet` that
> returns the exact string:
>
> ```
> Hello, Python
> ```
>
> Two pieces of syntax:
>
> - `def name():` defines a function
> - `return value` sends a value back to whoever called it
>
> [END TRANSMISSION]
## Your Task
Open `starter/starter.py`. Replace `pass` with a `return` statement
that returns `"Hello, Python"`.
## Objectives
- A function `greet` exists
- `greet()` returns `"Hello, Python"`