码迷,mamicode.com
首页 > 其他好文 > 详细

字典读写训练

时间:2020-07-21 14:10:56      阅读:83      评论:0      收藏:0      [点我收藏+]

标签:utf-8   with   json   import   color   读写   indent   inpu   float   

字典写入json文件中:

import json
stu_mark={}
stu_mark["Name"]=input("Name=")
stu_mark["English"]=float(input("English="))
stu_mark["Music"]=float(input("Music="))
stu_mark["Chinese"]=float(input("Chinese="))
print(stu_mark)
# with open("stu_mark.json", mode=‘w‘, encoding=‘utf-8‘) as fp:
#     json.dump(stu_mark, fp,ensure_ascii=False,indent=2)
f=open("stu_mark.json",w,encoding=utf-8)
json.dump(stu_mark,f,False,2)
f.close()

从json文件读入到字典中:

import json

# with open("stu_mark.json", mode=‘r‘, encoding=‘utf-8‘) as fp:
#     print(json.load(fp))
f=open("stu_mark.json",r,encoding=utf-8)
stu_mark=json.load(f)
print(type(stu_mark))
print(stu_mark)
f.close()

 

字典读写训练

标签:utf-8   with   json   import   color   读写   indent   inpu   float   

原文地址:https://www.cnblogs.com/exesoft/p/13354273.html

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