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