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 trial

Python Python Basics (2015) Logic in Python Loop

Emilio Andere
Emilio Andere
495 Points

What is the answer

to this

loop.py
hellos = [
    "Hello",
    "Tungjatjeta",
    "Grüßgott",
    "Вiтаю",
    "dobrý den",
    "hyvää päivää",
    "你好",
    "早上好"
]
print(hellos + " World")

2 Answers

Agustin Fitipaldi
Agustin Fitipaldi
1,644 Points

What the challenge is asking here is for you to create a for loop that goes through each item in the list of hellos and prints it out with the string "world" attached to it...

#an example
list_of_hellos = [
     "hello_1",
     "hello_2",
     "hello_3"
]
#now for the loop
for hello in list_of_hellos:
     print(hello = "world")
     #here we tell it to take each "hello" and print it alongside "world"

hope this makes sense

Joe Towles
Joe Towles
6,833 Points

for hellos in hellos: print(hellos, "World")

I was stuck for a while too. Good luck!