Writing Our First Code

In this lesson, we'll examine one of the simplest codes in Python syntax.

In this lesson, we will start writing code! So, let’s move on to the fun stuff.

The print Statement

Whenever we learn a new language, it is an age-old tradition to start by displaying the text “Hello World” on the screen.

Every language has a different syntax for displaying or printing something on the screen.

Since Python is one of the most readable languages out there, we can print data on the terminal by simply using the print statement.

Here’s what the statement looks like: