614 B
614 B
type, title, xp, duration, difficulty
| type | title | xp | duration | difficulty |
|---|---|---|---|---|
| challenge | The Greeting | 25 | 15 | 1 |
The Greeting
[INCOMING — Mission Control, Earth]
Cadet, your first Python. Implement a function called
greetthat returns the exact string:Hello, PythonTwo pieces of syntax:
def name():defines a functionreturn valuesends 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
greetexists greet()returns"Hello, Python"