개요
json 모듈을 이용하여 string을 dictionary로 변환할 수 있다.
예시
- 문자열(string)을 딕셔너리(dictionary)로 변환
import json
string = "{'a':1, 'b':2, 'c':3}"
dictionary = json.loads(string.replace("'","\"")) # 작은 따옴표 > 큰 따옴표로 바꿈
print(dictionary) # {'a': 1, 'b': 2, 'c': 3}
print(type(dictionary)) # <class 'dict'>
'python > 모듈' 카테고리의 다른 글
[Python] 순열과 조합 (0) | 2023.02.08 |
---|---|
[Python] textwrap (0) | 2023.01.30 |
[Python] datetime - 날짜, 시간 (0) | 2022.12.08 |
[Python] time - 시간 (0) | 2022.12.08 |
[Python] xmltodict (0) | 2022.12.06 |