Hello World

A sample Python program is shown here.

def greet(name):
    return f"Hello, {name}!"

if __name__ == "__main__":
    message = greet("world")
    print(message)

Run the program as below:

$ python hello.py