with using python 2.7:
>myCity = 'Isparta'>myCity.lower()>'isparta'#-should be->'ısparta'
tried some decoding, (like, myCity.decode("utf-8").lower()) but could not find how to do it.
how can lower this kinds of letters? ('I'>'ı', 'İ'>'i' etc)
EDIT: In Turkish, lower case of 'I' is 'ı'. Upper case of 'i' is 'İ'