In python what errors are in this code (python)

print ("Let's play Silly Sentences!")

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(name + "was planning a dream vacation to " + place )
print (name + "was especially looking forward to trying the local"
cuisine, including + "food1 and + "food2)

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

print (name + "has a long list of sights to see, including the
button " + noun and the adj2 park.
1 Like

What problems are you having?

One thing that jumps out is that I don’t think that you have quotation marks matched up correctly.

the code is not running
where do you think the issue is

somehwere around here, you have wrong placed quotes and +

1 Like

I see some errors here, they are:
-+ to concatenate you need to place the + out of the string, you place inside in this case:

cuisine, including + "food1 and **+** "food2)```


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

have a lot of, see if the + is in a string
tip: you can see the color, in case of forum pink is a text, so you can see, the last print is in a text, and the “cuisine, including” (2ºprint) is out of a text

you can rewrite that is this form

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(name + "was planning a dream vacation to " + place )
print(name + "was especially looking forward to trying the local cuisine, including " + food1 + " and " + food2)

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

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

look the colors, is all the organized!
I hope I’ve helped