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 trialliufeng chen
404 Pointsfor loop
i have got a list of words, and i want to add another word to each element in the lists, how should i write the program
hellos = [
"Hello",
"Tungjatjeta",
"Grüßgott",
"Вiтаю",
"dobrý den",
"hyvää päivää",
"你好",
"早上好"
]
for hello in hellos:
print(hello + 'World')
2 Answers
James Duvall
3,561 Pointshellos = [
"Hello",
"Tungjatjeta",
"Grüßgott",
"Вiтаю",
"dobrý den",
"hyvää päivää",
"你好",
"早上好"
]
for hello in hellos:
print(hello + 'World')
Your code currently returns 'HelloWorld', 'TungjatjetaWorld', ect..
So all you need to do is simply add a space in the string
hellos = [
"Hello",
"Tungjatjeta",
"Grüßgott",
"Вiтаю",
"dobrý den",
"hyvää päivää",
"你好",
"早上好"
]
for hello in hellos:
print(hello + ' World')
Steven Parker
231,236 PointsYou want to add the same word to each item in the list? Then something like this:
for i in range(len(hellos)):
hellos[i] += " another_word"
liufeng chen
404 Pointsliufeng chen
404 Pointsthank you , i was being stupid.