[Python] 문자열을 딕셔너리로 만들기
반응형
문자열(str, object)를 딕셔너리(dictionary)로 만드는 방법
from ast import literal_eval
x = "{'red':['apple', 'strawberry'], 'yellow':['banana', 'lemon']}" # Example
literal_eval(x) # 문자열 → 딕셔너리
728x90
'Python > 기타' 카테고리의 다른 글
[Python] 예외처리 :: try~except (0) | 2020.04.06 |
---|---|
[Python] 쥬피터 노트북 경고(warnings)가 나오지 않게 하는 법 (0) | 2020.03.20 |
[NLP] 문자열 전처리 Text Preprocessing :: Stopword (0) | 2020.03.04 |
[NLP] 한국어 자연어 처리 NLP :: KoNLP (0) | 2020.02.27 |
[NLP] 문자열 전처리 Text Preprocessing :: 토큰화 Tokenization (0) | 2020.02.27 |
Comments