def hello_world(): return "Hello World Function" if __name__ == "__main__": test = hello_world() print(test)