-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnosa_madlibs.py
21 lines (18 loc) · 904 Bytes
/
nosa_madlibs.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
print("Pastor: Testimony Time!?")
print("Congregation: Blessing Time!!")
print("Pastor: Let's take the first testimony\n")
print("Praaaaaise the Lord!!")
print("Congregation: Hallelujah!!")
name = input("My name is: ")
age = int(input("My age: "))
occupation = input("I work as a/an: ")
request = input("I've been praying to the Lord for: ")
print("Pastor: How long have you been praying for this?")
period = input("I've been praying for this for: ")
testimony = input("And what I am most grateful for is: ")
seed = input("To show my gratitude, I would like to give: ")
print(
f"\nMy name is {name} and I am {age} years old. I work as a {occupation}. I've been praying to the Lord for {request} for {period}. And what I am most grateful for is {testimony}. To show my gratitude, I would like to give to the amount of {seed}."
)
print("Praaaaaise the Lord!!")
print("Congregation: Hallelujah!!\n")