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

whats wrong

whats wrong???

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

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

gives undefined error

1 Answer

I copied and pasted your code onto my computer:

python2 doesn't like extended ascii - it says you must encode the characters -- a pain python hello.py File "hello.py", line 4 SyntaxError: Non-ASCII character '\xc3' in file hello.py on line 4, but no encoding declared; see http://python.org/dev/peps/pep-0263/ for details

HOWERVER< python3 is fine with your code:

python3 hello.py ['Hello', 'Tungjatjeta', 'Grüßgott', 'Вiтаю', 'dobrý den', 'hyvää päivää', '你好', '早上好']