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

Christopher Morris
Christopher Morris
1,050 Points

FOR LOOP

I keep back tracking to the video and re doing the examples but I am not understanding what I could be doing incorrectly..

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

1 Answer

Ryan S
Ryan S
27,276 Points

Hi Christopher,

These challenges can be extremely picky when it comes to the printed/returned format of strings. Your logic is correct, but you need to introduce a space between greeting and "World". It is looking for a printed output of "Hello World" rather than your current output of "HelloWorld".

Good luck.