print("Let`s play Silly Sentences!")
name = input("Enter a name: ")
adj = input("Enter an adjective: ")
adj2 = input("Enter an adjective: ")
adv = input("Enter an adverb: ")
food = 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(f"{name} was planning a dream vacation to {place}.")
print(f"{name} was looking forward to trying the local cuisine, including {adj} {food} and {food2}.")
print(f"{name} will have to practice the language {adv} to make it easier to {verb} with people.")
print(f"{name} has a long list of sights to see, including the {noun} museum and the {adj2} park.")
Comments
Leave a comment