""" Hello handler ============= The hello handler facilitates a simple greeting. """ def hi(salutation, location): """This method will print a message concatenating salutation with location. Args: salutation (str): The salutation string to print in the greeting. location (str): The location string to print in the greeting. """ message = '{greeting} {where}'.format(greeting=salutation, where=location) print(message) if __name__ == '__main__': hi('hello', 'world')