def greet(name):
    print("Hello, " + name + "!")
greet("Alice")
greet("Bob")Hello, Alice!
Hello, Bob!greet` that takes a single parameter `name`. When the function is called, it will print a greeting message that includes the value of the `name` parameter.greet` function twice, passing different values for the `name` parameter each time. This results in the function printing out two different greeting messages, one for "Alice" and one for "Bob".