OLD개발이야기/python
python - csv - 한글 못 읽는/ 깨지는 문제
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') 성공~