9 lines
188 B
Python
9 lines
188 B
Python
def welcome(name, planet):
|
|
"""Return a welcome string of the form:
|
|
|
|
"Welcome, <name> from <planet>."
|
|
|
|
welcome("Vega", "Mars") -> "Welcome, Vega from Mars."
|
|
"""
|
|
pass
|