반응형
[python] TypeError: expected string or bytes-like object
TypeError: expected string or bytes-like object
정규표현식을 사용하여 findall을 했는데, 타입에러(TypeError: expected string or bytes-like object)가 떴다.
분명 list에서도 잘 뽑아주고 정규표현식도 맞는데 왜 계속 에러가 나는거지.. 했는데 추출을 할 리스트가 string형식이 아니어서 string으로 변환.
param1 = re.findall("[0-9]{5}", str(key))
param2 = re.findall("[A-Z]{1}[0-9]{3}", str(key))
반응형
'프로그래밍 > Python' 카테고리의 다른 글
[python] Word2Vec 모델 만들기 (0) | 2021.02.15 |
---|---|
[python] Gensim을 사용하여 Python에서 Word 임베딩을 개발하는 방법 (0) | 2021.02.15 |
[python] matplotlib colormap (0) | 2021.02.15 |
Gensim word vector visualization of various word vectors (0) | 2021.02.10 |
Naver sentiment movie corpus (0) | 2021.02.10 |