码迷,mamicode.com
首页 > 编程语言 > 详细

Python读写Json文件

时间:2015-08-06 20:28:10      阅读:138      评论:0      收藏:0      [点我收藏+]

标签:

 

一个小例子,使用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 __name__ == "__main__":

    data = {}
    data["last"]=time.strftime("%Y%m%d")
    store(data)

    data = load()
    print data["last"]

 

Python读写Json文件

标签:

原文地址:http://www.cnblogs.com/eejron/p/4708980.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!