def greet(name, greeting="Hello"):
    # If the caller skips greeting, "Hello" is used automatically
    print(f"{greeting}, {name}!")

greet("Neville")
greet("Draco", greeting="Well, well")
