-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMad_Libs.py
19 lines (19 loc) · 1.05 KB
/
Mad_Libs.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#Created by Shashwat Raj
#Program to generate madd libs
Animal=input("Enter an animal: ")
Feeling=input("Enter a feeling: ")
Things=input("Input any things (plural): ")
Professional=input("Enter a profession (ex-Doctor): ")
Cloth=input("Enter a piece of clothing: ")
Things2=input("Input any things (plural): ")
A_person=input("Enter a person: ")
Place=input("Enter a place: ")
Verb=input("Enter a verb (with ing): ")
Food=input("Enter a food: ")
print("Say '"+Food+"' the photographer said as the camera flashed!")
print(A_person + " and I had gone to " + Place +" to get our photos taken today.")
print("The first photo we really wanted was a picture of us dressed as "+ Animal +" pretending to be a " + Professional)
print("When we saw the proofs of it, I was a bit " + Feeling + " because it looked different than in my head.")
print("(I hadn't imagined so many " + Things + " behind us.)")
print("However, the second photo was exactly what I wanted.")
print("We both looked like " +Things2 + " wearing " + Cloth + " and " + Verb + " --exactly what I had in mind!")