In this exercise you will be writing code to draw two hedgehogs. The first hedgehog looks like this:
.|||||||||.
|||||||||||||
/. `|||||||||||
o__,_||||||||||'
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.
ENTER
. Once the user presses ENTER
, it should display the second hedgehog.print
commands!) and just change the |
characters to something else, like #
!Below is an example of how the program should run:
.|||||||||.
|||||||||||||
/. `|||||||||||
o__,_||||||||||'
Press [ENTER] to fuzz!
.#########.
#############
/. `###########
o__,_##########'
Remember to use the Python reference sheet to help you with your code! Click on one of the buttons below:
Need some help? Click here to reveal a video walkthrough for this task!