About Lesson
First Program:
Python
# This is a simple Python program that prints "Hello, World!"
print("Hello, World!")
Explanation:
print()
is a built-in Python function used to output text or other values to the screen."Hello, World!"
is the string being printed.
When you run this program, it will display:
Hello, World!