Coding Task: 02.03 Fuzzy Hedgehog

In this exercise you will be writing code to draw two hedgehogs. The first hedgehog looks like this:

     .|||||||||.
    |||||||||||||
   /. `|||||||||||
  o__,_||||||||||'

Your Task

In the editor below, complete the code so that the program displays the hedgehog shown above on the screen, waits for the user to press ENTER, and then prints a second hedgehog with fuzzy fur.

The first hedgehog has been completed for you.

Requirements

  • The program should run without any errors.
  • The program should display the first hedgehog, then wait for the user to press ENTER. Once the user presses ENTER, it should display the second hedgehog.
  • The second hedgehog should have different fur. Check out the example image below for reference.
  • Hint: Once you have finished the first hedgehog, you can copy and paste the code code (including all the print commands!) and just change the | characters to something else, like #!

Example

Below is an example of how the program should run:

     .|||||||||.
    |||||||||||||
   /. `|||||||||||
  o__,_||||||||||'

Press [ENTER] to fuzz!

     .#########.
    #############
   /. `###########
  o__,_##########'

Python Reference Sheet

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

Scroll to Top