Let's generate emoticons by assembling a randomly choosing a set of eyes, a nose, and a mouth. Examples of emoticons are :-D =^P and :\
- Define a list of eyes
- Define a list of noses
- Define a list of mouths
- Randomly pick a set of eyes
- Randomly pick a nose
- Randomly pick a mouth
- Assemble and display the emoticon
import random
fruits = ['apple', 'banana', 'pineapple']
fruit = random.choice(fruits)
print(fruit)Example output:
:-P
Use a while loop to generate 5 emoticons.