The "Hello, World!" program is a simple program that outputs the message "Hello, World!" to the console. It is often used as a first introduction to programming.
def print_hello_world():
print("Hello, World!")
# Example
print_hello_world()
Hello, World!
The function print_hello_world()
prints the message "Hello, World!" to the console.
The example demonstrates calling the function to execute the "Hello, World!" program.