热门标签 | HotTags
当前位置:  开发笔记 > 编程语言 > 正文

Python中list,dictionary与file相互操作

Python的list,dictionary可以写入file,也可以从file中读取。关于list:1)写入文件self.e
Python的list,dictionary可以写入file, 也可以从file中读取。

关于list:
1)写入文件
self.existedBlog.write("your item data" + "\n")
2)读取
self.existedBlog = open("existedBlog", "r+")
        self.existedBlog.seek(0)
        currentBlogs = self.existedBlog.readlines()
print(currentBlogs)

3)文件内容:
line1
line2
line3
line4

关于dictionay:
1)写入文件
import json
dict['authToken'] = "your dev auth token"
file = open('config', "w+")
writer = json.JSONEncoder()
print(writer.encode(dict).strip("{}"))
2)读取
import json

        input_text = open('config').read()
        input_json = "{%(input_text)s}" % vars()
        reader = json.JSONDecoder()
        config = reader.decode(input_json)

        print(config)
3)文件内容:

"authToken":"your dev auth token",
    "noteStoreUrl":"your store",
    "blogType":"your blog api",
    "username":"",
    "password":"",

推荐阅读
author-avatar
星罗
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有