python与数据挖掘基础

设计一个节假日字典,键值为日期,格式如”161010“(表示2016年1月1日)。现在要求使用python编写一个2016年5月的节假日字典,当输入日期时,字典返回个值,1代表该日为节假日,0代表该日不是节假日。最后要求使用json模块将这个节假日字典序列化,并保存下来。

import json
x={"160523": 0, "160524": 0, "160525": 0, "160527": 0, "160528": 1, "160529": 1, "160508": 1, "160509": 0, "160506": 0, "160507": 1, "160504": 0, "160505": 0, "160502": 1, "160503": 0, "160526": 0, "160501": 1, "160531": 0, "160530": 0, "160519": 0, "160518": 0, "160515": 1, "160514": 1, "160517": 0, "160516": 0, "160511": 0, "160510": 0, "160513": 0, "160512": 0, "160520": 0, "160521": 1, "160522": 1}
y=json.dumps(x)
print(y)
f=open('chapter.json','w')
json.dump(x,f)
f.close()
print("输入日期:")
a=input()
print(x[a])

结果会在当前用户目录下生成json文件。

x代表字典

json.dumps()函数的使用,将字典转化为json

Python数据结构转换为JSON:json.dumps(data)

JSON数据结构转换为Python:json.loads(json_str)

如果你要处理的是文件而不是字符串,你可以使用 json.dump() 和 json.load() 来编码和解码JSON数据

json.dump():

with open('data.json', 'w') as f:
    json.dump(data, f)

json.load():
with open('data.json', 'r') as f:
    data = json.load(f)

最终运行结果:

python与数据挖掘基础_第1张图片

你可能感兴趣的:(python与数据挖掘基础)