美文网首页
python 笔记

python 笔记

作者: 午字横 | 来源:发表于2023-05-04 21:42 被阅读0次

存储
json.dump:接受两个实参,要储存的数据,以及可用于存储的文件对象

import json
numbers=list(range(100))

filename="my_number.json"

with open(filename,"w") as f:
      json.dump(numbers,f)

读取

import json
ilename="my_number.json"
with open(filename,"r")as f:
        print(json.load(f))


2023-05-05

相关文章

网友评论

      本文标题:python 笔记

      本文链接:https://www.haomeiwen.com/subject/ulhfsdtx.html