Course Content
How to Add a Virtual Environment in Python
0/1
Set
0/1
Python
About Lesson
Python
# This is a simple Python program that prints "Hello, World!"
print("Hello, World!")
  • 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!