Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 석사
- Classification Task
- 자연어처리
- 전처리
- naver movie review
- CUDA
- NLP
- pytorch
- 우울증
- 품사태깅
- Word2Vec
- 인공지능
- 수기
- word embedding
- 대학원
- sentiment analysis
Archives
- Today
- Total
슬기로운 연구생활
[ Python ] UnicodeDecodeError: 'utf-8' codec can't decode byte 0xff in position 0: invalid 본문
슬기로운 에러 생활
[ Python ] UnicodeDecodeError: 'utf-8' codec can't decode byte 0xff in position 0: invalid
vhrehfdl 2019. 9. 10. 11:35[ 해결 방법 ]
encoding 부분을 utf-8에서 utf-16으로 바꿔주니까 된다.
python3 기준
[ 코드 ]
# -*- coding: utf-8 -*-:
import csv
f = open('1_50000.csv', 'r', encoding='utf-16')
rdr = csv.reader(f)
for line in rdr:
print(line)
f.close()
'슬기로운 에러 생활' 카테고리의 다른 글
Comments