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!!!")
-
print()Function:- The
print()function is used to display output in Python. - It takes a string as input and prints it to the console.
- The
-
String
"Hello World!!!":- The text
"Hello World!!!"is enclosed in double quotes"", making it a valid string in Python.
- The text
Output
Hello World!!!