Python - Methods and Behavior Definition
Find the error in this method and choose the correct fix:
def greet(name):
print("Hello, " + name)
message = greet("Alice")
print(message)