一个小例子,使用Json配置文件 # -*- coding: utf-8 -*- import json import time def store(data): with open('data.json', 'w') as json_file: json_file.write(json.dumps(data)) def load(): with open('data.json') as json_file: data = json.load(json_file) return data if…