Files
curriculum/1.solar-system/2.first-light/07.the-prompt/starter/starter.py

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