Coding Task: 04.03 My Amazing Story

What’s your story? I bet it’s amazing!

Your Task

In the editor below, write a program that asks the user to type in:

  • An animal
  • A colour
  • An item
  • A number
  • A celebrity

Then display a short (no more than 8 sentences) story involving all of these words! You must use each word at least once.

Python Reference Sheet

Remember to use the Python reference sheet to help you with your code! Click on one of the buttons below:

Requirements

  • The program should run without any errors.
  • The program should ask the user to enter each of the things listed above, then print out a story that uses each variable at least once. You can use a variable multiple times if you want!
  • Hint: Don’t just type in your answers in the code because that will always print whatever you typed in, not the user! You will need to use a variable to store what the user types in for their answers!

Example

Below is an example of how the program should run if you entered dog, pink, collar, 7 and Harry Styles as your answers:

Enter an animal: dog
Enter a colour: pink
Enter an item: dollar
Enter a number: 7
Enter a celebrity: Harry Styles
Once upon a time, I saw a pink dog. I think it belong to Harry Styles and I petted it 7 times. Then Harry Styles gave me a dollar. It was the best day ever!
Scroll to Top