프로그래밍/파이썬

값을 저장하고 읽는 방법 chatgpt

do121 2023. 4. 7. 08:06

ini로 저장하기
import configparser

# configparser 객체 생성
config = configparser.ConfigParser()

# 설정값 지정
config['section1'] = {'key1': 'value1'}

# 설정 파일에 쓰기
with open('config.ini', 'w') as f:
    config.write(f)

# 설정 파일에서 읽기
config.read('config.ini')
value = config['section1']['key1']
print(value)


json으로 저장하기
import json

# 데이터 생성
data = {"key1": "value1", "key2": "value2"}

# 파일에 쓰기
with open("data.json", "w") as f:
    json.dump(data, f)

# 파일에서 읽어오기
with open("data.json", "r") as f:
    data = json.load(f)

# 출력
print(data)

저장된 값중 특정키값만 사용하기
import json

with open("data.json", "r") as f:
    data = json.load(f)

value1 = data["key1"]
print(value1) # "value1" 출력