-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.py
24 lines (23 loc) · 849 Bytes
/
main.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#Jaunel Deans
#September 20, 2023
print("Let's play Silly Sentences!")
print()
name = input("Enter a name: ")
adj1 = input("Enter an adjective: ")
adj2 = input("Enter an adjective: ")
adv = input("Enter an adverb: ")
food1 = input("Enter a food: ")
food2 = input("Enter another food: ")
noun = input("Enter a noun: ")
place = input("Enter a place: ")
verb = input("Enter a verb: ")
print()
print(name + " was planning a dream vacation to " + place + ".")
print(name + " was especially looking forward to trying the local")
print("cuisine, including " + adj1 + " " + food1 + " and " + food2 +".")
print()
print(name + " will have to practice the language " + adv + " to")
print("make it easier to " + verb + " with people.")
print()
print(name + " has a long list of sights to see, including the")
print(noun + " museum and the " + adj2 + " park.")