首页 > 学院 > 开发设计 > 正文

Python读写Json文件

2019-11-14 17:05:27
字体:
来源:转载
供稿:网友

 

一个小例子,使用Json配置文件

 

# -*- coding: utf-8 -*-import jsonimport timedef 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 dataif __name__ == "__main__":    data = {}    data["last"]=time.strftime("%Y%m%d")    store(data)    data = load()    PRint data["last"]

 


发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表