greet(name) that returns the exact string "Hello, <name>! Welcome.", where <name> is substituted with the given argument. This checks basic string formatting for output, the print-equivalent of a "Hello World" screening question.greet("Asha")'Hello, Asha! Welcome.'
Direct substitution into the template.
An f-string handles this cleanly: f"Hello, {name}! Welcome."