Hello World Program in Python
Subject: Python Programming
Contributed By: Nunugoppula Ajay
Created At: February 19, 2025
Question:
Write a Python Program to Print "Hello Word".
Explanation Video:
Explanation:
print()is a built-in function in Python used to display text or other outputs on the screen.The text "Hello World" is enclosed in double quotes (
" "), which signifies a string in Python.
Source Code:
print("Hello World");
Output:
Hello World