python ConfigParse模块中的方法
Posted 十年之光
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python ConfigParse模块中的方法相关的知识,希望对你有一定的参考价值。
1、config=ConfigParser.ConfigParser()
创建ConfigParser实例
2、config.sections()
返回配置文件中节序列
3、config.options(section)
返回某个项目中的所有键的序列
4、config.get(section,option)
返回section节中,option的键值
5、config.add_section(str)
添加一个配置文件节点(str)
6、config.set(section,option,val)
设置section节点中,键名为option的值(val)
7、config.read(filename)
读取配置文件
8、config.write(obj_file)
写入配置文件
以上是关于python ConfigParse模块中的方法的主要内容,如果未能解决你的问题,请参考以下文章