Python Program to print Hello World

Program

print("Hello World!!!")

This is a simple Python program that prints "Hello World!!!" to the console.

print("Hello World!!!")
  1. print() Function:

    • The print() function is used to display output in Python.
    • It takes a string as input and prints it to the console.
  2. String "Hello World!!!":

    • The text "Hello World!!!" is enclosed in double quotes "", making it a valid string in Python.

Output

Hello World!!!