Custom Greeting Generator

This Python challenge encourages beginners to design a function that generates customized greetings using the provided name.

Develop a function that takes a name as an input and returns a customized greeting in the format: "Hello xxx". ### Parameters - `name` (str): This parameter holds a string value representing a person's name. ### Return Value - The function returns a customized greeting message in the form of a string following the format "Hello xxx". ### Examples ```python # Generating a greeting for "John" solution("John") # Returns: "Hello John" # Generating a greeting for "World" solution("World") # Returns: "Hello World" # Generating a greeting for "Python" solution("Python") # Returns: "Hello Python" ```