Hi, i am new to python, i have developed one xls writing programme, while am writing to xls file am getting error with unicodedecodeerror:'ascii' codec can't decode byte 0xa8 in position 77: ordinal not in range(128), so i have try to change decoding code to 'utf_8' but still its showing the same error my code to change encoder is given below
import sitecustomize
import sys
reload(sys)
sys.setdefaultencoding('utf_8')
Need help please. Thank you.