82.3k views
10 votes
Assignment 1: silly sentences edhesive

User Jeannette
by
4.9k points

1 Answer

3 votes

Answer:

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: ")

fd1=input("Enter a food: ")

fd2=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 + " " + fd1 + " and " + fd2 + ".")

print(" ")

print(name + " will have to practice the language " + adv + " to \\make it easier to " + verb + " with people.")

print(" ")

print(name + " has a long list of sights to see, including the\\" + noun + " museum and the " + adj2 + " park.")

Step-by-step explanation:

Got it right. Might be a longer version, but it worked for me.

User Brent Arias
by
5.2k points