Coding Task: 01.02 Hello, World

The first program that we usually write when learning a new programming language is Hello, world!. It’s probably the most famous program in the world! It displays the words Hello, world! onto the screen. The Python code for this program looks like this:

print("Hello, world!")

Your Task

In the editor below, edit and fix the code so that the program displays Hello, world! in the console.

Requirements

  • The program should run without any errors.
  • The program should display the text Hello, world! onto the screen.
  • Hint: Compare the code in the editor to the code in the screenshot above.

Example

Below is an example of how the program should run:

Hello, world!
Scroll to Top