Back

hello_world! in python

My first time in python programming

hello_world! in python

Today we will learn how to print Hello World with Python and how it works.

The simplest and most famous first program in any language is “Hello World”.

print("hello world")

What this line does:

  • print() → built-in function to show output on screen
  • "hello world" → text (string) inside double quotes
  • () → tells Python to run the print function

Run this code → you will see:
hello world