ast 함수 사용 ( String을 dict or list로 변환)
import ast
str_dict = "{'a': 3, 'b': 5}"
print (type(str_dict)) # <type 'str'>
convert_dict = ast.literal_eval(str_dict)
print (type(convert_dict)) # <type 'dict'>
print (convert_dict['a']) # 3
댓글