nose = '0' #looks a little like a nose 

# Get first character for eyes and mouth 
user_input = input ("Enter a character ( 'q' for quit): ")
user_value = user_input[0]

#Loop until user enter sentinel value 
while user_value != 'q': 
    print(f' {user_value} {user_value} ') #print eyes 
    print(f {nose} ') #print nose 
    print(user_value*5) #print mouth 
    print ('\n')

    #Get new character for eyes and mouth
    user_input = input ("Enter a character ('.q' for quit): ")
    user_value = user_input[0]

print ('Goodbye. \n')

Embed on website

To embed this project on your website, copy the following code and paste it into your website's HTML: