Python Tutorials

Python Programs

Python Hello World Program


Python Hello World Program

In this tutorial, we will learn how to write a Hello World program in Python language. We will go through each statement of the program.

Python Program

print('Hello, World!')

Output

Hello, World!

Working of the "Hello, World!" Program

  1. print('Hello, World!')
    This line prints the string "Hello, World!" to the standard output (usually the screen). The print function is a built-in function in Python that outputs text to the console.