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 trialjustin jones
832 Pointswhats wrong
whats wrong???
hellos = [
"Hello",
"Tungjatjeta",
"Grüßgott",
"Вiтаю",
"dobrý den",
"hyvää päivää",
"你好",
"早上好"
]
for greetings in hellos:
if greetings == "Hello":
print(hellos)
1 Answer
Bill Tihen
17,790 PointsI 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ää', '你好', '早上好']
justin jones
832 Pointsjustin jones
832 Pointshellos = [ "Hello", "Tungjatjeta", "Grüßgott", "Вiтаю", "dobrý den", "hyvää päivää", "你好", "早上好" ] for greetings in hellos: if greetings == "Hello": print(hellos + " World")
gives undefined error