일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
Tags
- #일상영어
- c언어
- TensorFlow
- Convolution Neural Network
- #Android
- text2img
- #1일1영어
- #영어
- #프로젝트
- 이미지 생성
- 영어명언
- tensorflow update
- #영어 명언
- 영어
- findContours
- #English
- python __init__
- #실생활 영어
- object detection
- 완전탐색
- keras
- python list
- tokenizing
- convexhull
- #opencv
- #실생활영어
- 딥러닝
- python 알고리즘
- word embedding
- opencv SURF
Archives
- Today
- Total
When will you grow up?
Python 에서 text 과정중 UnicodeDecodeError: 'cp949' codec can't decode byte 0xe2 in position 564 본문
02. Study/Python
Python 에서 text 과정중 UnicodeDecodeError: 'cp949' codec can't decode byte 0xe2 in position 564
미카이 2017. 5. 4. 16:14python으로 text 읽어오는 과정중,
위 사진과 같은 오류가 뜰 경우가 있는데,
1 2 3 4 5 | #수정전 open(os.path.join(dirpath, file), "r") as f: # open(os.path.join(dirpath, file), "r", encoding='UTF8') as f: | cs |
으로 바꿔주시면 됩니다.
코덱으로 인코딩 된 파일을 읽어들일때 Decode과정에서 Error를 뿜어낸다고 하네요.
'02. Study > Python' 카테고리의 다른 글
Python을 이용한 정규표현식(regular expression) (0) | 2019.08.12 |
---|---|
List Comprehension(리스트 컴프리헨션) (0) | 2018.01.12 |
List slicing(리스트 슬라이싱) (0) | 2018.01.12 |
'dict' object has no attribute 'iteritems' 오류 (0) | 2017.05.15 |
raise LookupError(resource_not_found) 오류 (0) | 2017.05.06 |
Comments