pip install chardet
import chardet
test= list[12][1]
print (chardet.detect (test))
{'confidence': 0.99, 'language': 'Korean', 'encoding': 'EUC-KR'}
결과값
print list[12][1].decode('euc-kr').encode('utf-8')
성공~
pip install chardet
import chardet
test= list[12][1]
print (chardet.detect (test))
{'confidence': 0.99, 'language': 'Korean', 'encoding': 'EUC-KR'}
결과값
print list[12][1].decode('euc-kr').encode('utf-8')
성공~