configparser 模块的基本方法

Posted gexbooks

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了configparser 模块的基本方法相关的知识,希望对你有一定的参考价值。

以下是 configparser 模块的基本方法:

  • 读取配置文件
    1. defaults() 返回包含实例范围默认值的字典
    2. read(filename) 直接读取ini文件内容
    3. sections() 获取所有的 section,以列表的形式返回
    4. options(section) 获取指定 section 的所有的 option
    5. items(section) 获取指定 section 所有的键值对
    6. get(section, option) 获取指定 section 中 option 的值
    7. getint(section, option) 获取指定 section 中 option 的值,以 int 类型返回
    8. getfloat(section, option) 获取指定 section 中 option 的值,以 float 类型返回
    9. getboolean(section, option) 获取指定section 中 option 的值,以 boolean类型返回
  • 写入配置文件
    1. add_section(section) 添加指定的新的 section
    2. has_section(section) 判断是否存在指定的 section
    3. set(section, option, value) 设置指定 section 中 option 的值
    4. remove_section(section) 删除指定 section
    5. remove_option(section, option) 删除指定 section 中的 option
    6. write(fileobject) 将内容写入配置文件

以上是关于configparser 模块的基本方法的主要内容,如果未能解决你的问题,请参考以下文章

Python不归路_configparser模块

python常用模块——configparser

configparser模块

configparser模块

python 之configparser模块

python ConfigParse模块中的方法