""" Hello world Comments ==================== Greeting Application. """ def hi(): """ Procedure to declare, assign and print parameters to be passed to main """ location = 'Universe' greeting = 'Hey' msg = '{} {}'.format(greeting, location) print(msg) if __name__ == '__main__': hi()