일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- MySQL
- Routing
- 코딩 테스트
- 라우터
- 코딩테스트
- Snort Rule
- 도커
- TDD
- programmers
- OSI7계층
- 스노트
- Linux
- Cosmos
- 라우팅
- docker
- 컨테이너
- Python
- 라우팅프로토콜
- 프로그래머스
- Router
- 트레바리
- 데이터베이스
- snort
- database
- coding test
- osi7layer
- db
- 스노트 룰
- Container
- 리눅스
Archives
- Today
- Total
Simple is IT, 누구나 보고 누구나 깨닫는 IT
UnicodeEncodeError: 'cp949' codec can't encode character '\xf6' in position 358: illegal multibyte sequence 본문
Simple is IT/Programming
UnicodeEncodeError: 'cp949' codec can't encode character '\xf6' in position 358: illegal multibyte sequence
currenjin 2020. 5. 17. 00:10UnicodeEncodeError: 'cp949' codec can't encode character '\xf6' in position 358: illegal multibyte sequence
파이썬으로 크롤링 중 해당 오류가 발생했어요 !
유니코드 관련 에러이며 개발자들 사이에서 자주 발생합니다.
첫 번째, 도구 하단의 코딩 방식을 확인합니다.
utf-8로 변경해주거나 자신에게 적합한 인코딩 방식을 지정
계속해서 문제가 발생하면
두 번째, 코드에 utf-8을 붙여줍니다.
수정 전 : f = open('file.txt', 'w')
수정 후 : f = open('file.txt', 'w', -1, 'utf-8')
'-1' : 버퍼
python 3 버전 부터 utf-8로 된 파일들은 오류 발생
'Simple is IT > Programming' 카테고리의 다른 글
error: Microsoft Visual C++ 14.0 is required. Get it with "Microsoft Visual C++ Build Tools": https://visualstudio.microsoft.com/downloads/ (0) | 2020.06.04 |
---|---|
pycharm : @NotNull method com/intellij/execution/configurations/GeneralCommandLine.getExePath must not return null (0) | 2020.05.27 |
파이썬 줄 바꿈 없이 print 사용하기! (0) | 2020.05.27 |
Ansible! 그는 누구인가 (0) | 2020.05.21 |
자바를 다루는 기술 (0) | 2020.05.07 |
Comments