In this exercise you will be writing code to draw two smiley faces. The first smiley face has already been coded for you.
In the editor below, fill in the blanks so that the program displays a smiley face on the screen, waits for the user to press ENTER
, and then prints a second smiley face with different eyes and a different mouth.
Remember to use the Python reference sheet to help you with your code! Click on one of the buttons below:
ENTER
. Once the user presses ENTER
, it should display the second smiley face.Below is an example of how the program should run:
.-^^^^^^^-.
.` `.
/ . . `
: :
| |
: \ / :
\ `.____.` /
`. .`
`-._____.-`
Press [ENTER] to blink!
.-^^^^^^^-.
.` `.
/ _ _ `
: :
| |
: \ / :
\ `.____.` /
`. .`
`-._____.-`
Need some help? Click here to reveal a video walkthrough for this task!