I'm using Python 2.7.11 , I get a wrong value when getting decimal value of a character from extended ascii table
# -*- coding: utf-8 -*-
str="è"
print(ord(str[0])) #prints 232 decimal
but the value of this char is 138 decimal (http://www.asciitable.com/)
When i remove the coding utf-8 line i get this error SyntaxError: Non-ASCII character '\xe8'