def hello(name: str): # (1) """ Welcomes the person whose name is passed to the function""" print(f"Hello, {name}") # (2)
This is a function definition.
This print statement employs an "f-string"