一个小例子,使用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"]

 

相关文章:

  • 2022-12-23
  • 2021-09-16
  • 2021-12-27
  • 2021-05-28
  • 2022-01-01
  • 2021-11-28
  • 2021-07-03
猜你喜欢
  • 2021-09-29
  • 2021-06-23
  • 2021-10-19
  • 2022-12-23
相关资源
相似解决方案