Python 基础 - Day 5 Learning Note - 模块 之 标准库:ConfigParser (10)

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python 基础 - Day 5 Learning Note - 模块 之 标准库:ConfigParser (10)相关的知识,希望对你有一定的参考价值。

configparser模块介绍

用于生成和修改常见的配置文档(configuration file),  

配置文件格式

用户配置文件就是在用户登录电脑时,或是用户在使用软件时,软件系统为用户所要加载所需环境的设置和文件的集合。它包括所有用户专用的配置设置,如程序项目、屏幕颜色网络连接、打印机连接、鼠标设置及窗口的大小和位置等。一般格式包括ini,cfg,xml, config等。 配置文件的格式如下

 

[DEFAULT]
ServerAliveInterval = 45
Compression = yes
CompressionLevel = 9
ForwardX11 = yes
 
[bitbucket.org]
User = hg
 
[topsecret.server.com]
Port = 50022
ForwardX11 = no

或者

# This is a simple example with comments.
[bug_tracker]
url = http://localhost:8080/bugs/
username = dhellmann
; You should not store passwords in plain text
; configuration files.
password = SECRET

常用操作

生成配置文件

 

以上是关于Python 基础 - Day 5 Learning Note - 模块 之 标准库:ConfigParser (10)的主要内容,如果未能解决你的问题,请参考以下文章

Python基础day-5[字符编码,文件处理,函数]

Python全栈day9(Python基础)

Python 基础 - Day 5 Assignment - ATM

Day1_Python基础_5.Hello World 程序

Python基础篇-day5

Python 基础 - Day 5 Learning Note - 模块 之 介绍篇