python数据处理常用代码记录

数据读写

json格式数据读写

# -*- coding: utf-8 -*-
import json
#写数据
with open('data.json', 'w') as f:
    json.dump(data, f)
#读数据
with open('data.json', 'r') as f:
    data = json.load(f)

你可能感兴趣的:(数据准备日常)