Coding Task: 01.03 A Conversation in Python!

Now that we’ve fixed our first program in Python, let’s write a program that has a conversation with itself!

Your Task

In the editor below, edit the code so that the program displays the following:

  • Hello, <your_name>, how are you?
  • I am great! What did you do over the weekend?
  • I watched <your favourite show>! What did you do?
  • I played some footy, and my team won!

Requirements

  • The program should run without any errors.
  • The program should display the all text above on the screen.
  • Hint: You’ll need to use multiple print() functions, one on each new line.

Example

Below is an example of how the program should run if your name was Alice, and your favourite TV show was Friends:

Scroll to Top
Scroll to Top