1.读取ini文件内容[.read()]
2.得到所有的节点,并以列表的形式返回[这里输入文件.sections()]
3.得到节点下的所有键值对[.options()]
4.得到
一、读取
read(filename)
直接读取ini文件内容
sections()
得到所有的section,并以列表的形式返回
options(section)
得到该section的所有option
items(section)
得到该section的所有键值对
get(section,option)
得到section中option的值,返回为string类型
getint(section,option)
得到section中option的值,返回为int类型
二.写入
**`add_section(section)`** 添加一个新的section <br /> ** `set(section, option, value)`** 对section中的option进行设置<br /> **`conf.write()` **写