-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathweek1-homework
More file actions
23 lines (20 loc) · 1.11 KB
/
week1-homework
File metadata and controls
23 lines (20 loc) · 1.11 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
adjective = input("Enter an adjective:")
noun = input("Enter a noun:")
past_tense_verb = input("Enter a past_tense_verb:")
adverb = input("Enter an adverb:")
adjective1 = input("Enter an adjective1:")
noun1 = input("Enter a noun1:")
noun2 = input("Enter a noun2:")
adjective2 = input("Enter an adjective2:")
verb = input("Enter a verb:")
adverb2 = input("Enter an adverb2:")
past_tense_verb2 = input("Enter a past_tense_verb2:")
adjective3 = input("Enter an adjective3:")
print(f"Today I went to the zoo. I saw a {adjective} {noun} jumping up and down in its tree.")
print(f"He {past_tense_verb} {adverb} through the large tunnel that led to its {adjective1} {noun1}")
print(f"I got some peanuts and passed them through the cage to a gigantic gray {noun2} towering above my head.")
print(f"Feeding that animal made me hungry. I went to get a {adjective2} scoop of ice cream. It filled my stomach.")
print(f"Afterwards I had to {verb} {adverb} to catch our bus.")
print(f"When I got home I {past_tense_verb2} my mom for a {adjective3} day at the zoo.")
# f""" will print entire madlib without a break
# dry - don't repeat yourself