Source Code:
(back to article)
def greet(greeting, recipient): return f"{greeting}, {recipient}!" data = {'greeting': 'Hello', 'recipient': 'world'} print(greet(**data))
Result:
Report an issue