Welcome to the Treehouse Community
Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.
Start your free trialCoding Lab 6
2,170 Pointssyntax error in for loop challenge
trying to print to the results of a for loop on a list of words called "hellos" followed by the word "world"
this doesn't work:
for word in hellos: print (word "World")
tried various quote combos and anything else I could think of\ Stuck
hellos = [
"Hello",
"Tungjatjeta",
"Grüßgott",
"Вiтаю",
"dobrý den",
"hyvää päivää",
"你好",
"早上好"
]
for word in hellos:
print (word "World")
2 Answers
Steven Parker
231,236 Points
You forgot the concatenation operator (+
)
When you join strings together, you use the concatenation operator (+
) between them.
Also remember to include a space inside the quotes and before World.
Ben Shockley
6,094 PointsWhen you embed variables into a string you would use a format sequence. For strings you would use %s, and then place the variable at the end of the string. So your print statement would look like this.
print("%s World" % word)
Derik Davis
Python Web Development Techdegree Student 415 PointsThanks Ben you're a life saver.