본문 바로가기

[Python] 문자열을 딕셔너리로 만들기

Python/기타 2020. 3. 20.

반응형

문자열(str, object)를 딕셔너리(dictionary)로 만드는 방법

from ast import literal_eval

x = "{'red':['apple', 'strawberry'], 'yellow':['banana', 'lemon']}" # Example
literal_eval(x) # 문자열 → 딕셔너리

 

 

 

 

728x90

Comments