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

Not finding all the list items..

I'm trying to get past this, any help?

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

for hello in hellos:
  world = 'World'
  print(hello + world)

1 Answer

Haider Ali
seal-mask
.a{fill-rule:evenodd;}techdegree seal-36
Haider Ali
Python Development Techdegree Graduate 24,728 Points

Hi there Nils. There is just one minor thing you are missing, the challenge asks you to print out the hello followed by a space then 'World'. You are just missing the space. Add that and you should be good to go! Also, I would recommend defining your variable once, outside the loop since it is not necessary to have it in the loop. However, in this case, you don't even need a variable and can just do the following:

for hello in hellos:
  print(hello + ' World')

Thanks,

Haider

Thanks a lot mate :)