python def hello_world(name): print("Hello, {}!".format(name)) name = input("Enter your name: ") hello_world(name)