# Math πrate is excited with what he has achieved and now is ready to take the final game challenge
# Let's get started in helping him create some fun games
'''Task 1: Mad Lib'''
print("**** Task 1: ****")
print()
# Have you heard of the MadLib game? [Wait for the student to answer]
# Mad Libs is the world’s greatest word game. They are like fill-in-the-blank stories. It is a game where one player prompts others for a list of words and then plugs it into a story. It's fun because the player is unaware of what the storyline is.
# So let's help create a python program for Madlib. The program must prompt the user for:
# - Two adjectives
# - Two nouns
# - Two verbs
# These adjectives, nouns and verbs need to be inserted in the story as follows:
# “Today I went to the zoo. I saw a(n) <adjective> <noun> swinging in the tree. He was <verb> the birds away. He suddenly saw a kid feeding peanuts to his best monkey friend <noun>. <noun> was <adjective> and kept <verb> the entire day.”
# Ready for the challenge. Go for it!!
adj1 = input("Enter your first adjective:")
adj2 = input("Enter your second adjective")
noun1 = input("Enter a noun")
noun2 = input("Enter another noun")
verb1 = input("Enter a verb")
verb2 = input("Enter another verb")
print(f"Today I went to the zoo. I saw a(n) {adj1} {noun1} swinging in the tree. He was {verb1} the birds away. He suddenly saw a kid feeding peanuts to his best monkey friend. {noun2} was {adj2} and kept {verb2} the entire day.")
'''Task 2: Multiple Smileys'''
print("**** Task 2: ****")
print()
# Using the for loop, create a program that prints multiple smiley.
# Your program can take the special character to be used in creating the smiley as an input from the user
# So put on your creative hat and get started!
eyes = input("Which character do you want to be used as your smiley's eyes?")
for i in range(1,4+1):
for y in range(1,4+1):
print(f"\n________________________\n|\t{eyes}\t{eyes}\t|\n|\t < \t\t|\n|******* *******\t|\n|\t******\t |\n________________________")
print("\t")
print("\n")
'''Great! You are extremely creative. I am sure you would have had fun creating your games.'''
To embed this project on your website, copy the following code and paste it into your website's HTML: