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 trialDidier Borel
2,837 PointsI don't understand why I get this error message in my for loop. the error message is didn't find hello world.
this for help
hellos = [
"Hello",
"Tungjatjeta",
"Grüßgott",
"Вiтаю",
"dobrý den",
"hyvää päivää",
"你好",
"早上好"
]
for word in hellos:
print("word""World")
1 Answer
Bapi Roy
14,237 PointsYou are very close. Your issue is in print() statement.
You have to use "word" variable in print statement along with "Hello" string. You can concatenate with + operator or use format()
Didier Borel
2,837 PointsDidier Borel
2,837 Pointssorry I still don't get it. the word is "hello" in each language. I added a "+" sign to concatenate the word variable with "World" I have tried everything combination that seems possible so what is the solution?
Didier Borel
2,837 PointsDidier Borel
2,837 PointsHi Bapi, I figured it out, forget my last comment. Thanks for your help