32 lines
599 B
Markdown
32 lines
599 B
Markdown
---
|
|
type: challenge
|
|
title: "The Script"
|
|
xp: 25
|
|
duration: 20
|
|
difficulty: 1
|
|
---
|
|
|
|
# The Script
|
|
|
|
> **[INCOMING — Mission Control, Earth]**
|
|
>
|
|
> Cadet, real Python files hold *multiple* functions. Each one does
|
|
> a single, named job. The grader can call any of them by name.
|
|
>
|
|
> Implement two functions in the same file:
|
|
>
|
|
> - `hello()` returns `"From the script"`
|
|
> - `goodbye()` returns `"Out"`
|
|
>
|
|
> [END TRANSMISSION]
|
|
|
|
## Your Task
|
|
|
|
Open `starter/starter.py`. Replace each `pass` with the right
|
|
`return` statement.
|
|
|
|
## Objectives
|
|
|
|
- `hello()` returns `"From the script"`
|
|
- `goodbye()` returns `"Out"`
|