Google News
logo
Python Program to Print Hello world!
Here's a simple Python program to print "Hello world!" to the console :
Program :
print("Hello world!")
Output :
Hello, world!
You can save this code in a file with a .py extension (e.g., helloworld.py), and then run the program using a Python interpreter.

The output will be "Hello world!" printed to the console.