599 B
599 B
type, title, xp, duration, difficulty
| type | title | xp | duration | difficulty |
|---|---|---|---|---|
| challenge | The Script | 25 | 20 | 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"