Coding Task: 01.03 Hi to You

Now that we’ve fixed our first program in Python, let’s write a program that let’s the computer say Hello to you! Look at the code below:

print("Hello, world!")

Your Task

In the editor below, edit the code so that the program displays Hello, <your_name>! on the screen.

Requirements

  • The program should run without any errors.
  • The program should display the text Hello, <your_name>! onto the screen.
  • Hint: Try changing the text inside the " " marks in the editor.

Example

Below is an example of how the program should run if your name was Alice:

Hello, Alice!
Scroll to Top