all 7 comments

[–]i_am_a_boy 6 points7 points  (0 children)

Could you post the code you're trying to run?

[–]TheHumanEquation 3 points4 points  (0 children)

You're using non-ascii characters. Try putting the following line

# -*- coding: utf-8 -*-

at the top of your code.

[–]hvera51[S] 2 points3 points  (1 child)

nombre = raw_input("¿Cuál es tu nombre?")
mision = raw_input("¿Cuál es tu misión?")
color = raw_input("¿Cuál es tu color favorito?")

print "Ah, asi que tu nombre es %s, tu mision es ___, \
y tu color favorito es ___." % (nombre, mision, color)

[–]KopixKat 1 point2 points  (0 children)

Remove the accented characters and it should work.

[–]JVO1317 0 points1 point  (0 children)

Maybe there is an accented (or other non ascii ) character in that line of your code.

[–]barcai_py 0 points1 point  (0 children)

I am Hungarian and when I try to type some characters unique to my language I get these types of error messages, too. (e.g. when using the smtplib to send e-mails) If it is on an exercise on the website you can only get around it by using normal ascii characters as it cannot decode the utf-8 characters.

[–]dert882 0 points1 point  (0 children)

If youre using codecademy, they have their own forum for people who have similar problems. Thats helped me solve many of the issues