Let's play Silly Sentences! [name] was planning a dream vacation to [place]. [name] was especially looking forward to trying the local cuisine, including [adjective 1] [food 1] and [food 2]. [name] will have to practice the language [adverb] to make it easier to [verb] with people. [name] has a long list of sights to see, including the [noun] museum and the [adjective 2] park.
Answers
The following cσdes have been written using Python.
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 cuisine "
"including", adj1, food1, "and", food2)
print(name, "will have to practice the language quietly to make it "
"easier to", verb, "with people")
print(name, "has a long list of sights to see, including the", noun, "museum "
"and the", adj2, "park")
Hope it helps.