configparser模块
Posted zhengyiqun1992
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了configparser模块相关的知识,希望对你有一定的参考价值。
[zheng]
user = zheng
pwd = 123
[xiao]
user = xiao
pwd = 123
import configparser user_obj = configparser.ConfigParser() #创建实例化 user_obj.read(seting.USER_FILE) #读该文件 print(user_obj.sections())# 查看所有的sections,默认不会读[DEFAULT] print(‘zheng‘ in user_obj) #判断该值是否在sections 列表当中 print(user_obj[‘zheng‘][‘pwd‘])#通过列表取值
line = user_obj[‘zheng‘] #获取该sections print(line[‘pwd‘]) #通过列表的方式取得该KEY值下的val值
line = user_obj.add_section(‘zhang‘) 增加 section user_obj.write(open(seting.USER_FILE, ‘w‘))
user_obj.remove_section(‘zhang‘) #删除section user_obj.remove_option(‘zheng‘,‘user‘) #删除section下的key值
以上是关于configparser模块的主要内容,如果未能解决你的问题,请参考以下文章