本文主要是介绍python configparser.ConfigParser参数解析,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
configparser.ConfigParser(defaults=None, dict_type=dict, allow_no_value=False, delimiters=(’=’, ‘:’), comment_prefixes=(’#’, ‘;’), inline_comment_prefixes=None, strict=True, empty_lines_in_values=True, default_section=configparser.DEFAULTSECT, interpolation=BasicInterpolation(), converters={})
- allow_no_value, 值是否可以为空
- delimiters ,option 与 value 间用什么分割
- comment_prefixes,注释内容以什么开头
- strict,严格模式,严格模式下 section 或者 option 不能重复, 否则会报 DuplicateSectionError 或者 DuplicateOptionError 错误
这篇关于python configparser.ConfigParser参数解析的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!