主题:Python读写配置文件的实际操作步骤解析
python读写配置文件在实际应用中具有十分强大的功能,在实际的操作中也有相当简捷的操作方案,以下的文章就是对python 读写配置文件的具体方案的介绍,望你浏览完下面的文章会有所收获。
python 读写配置文件ConfigParser模块是python自带的读取配置文件的模块.通过他可以方便的读取配置文件. 这篇文章简单介绍一下python 读写配置文件的方法.
配置文件.顾名思议就是存放配置的文件.下面是个例子
1. [info]
3. name = chen
4. sex = male
其中[ ] 中的info是这段配置的名字下面age,name都是属性下面的代码演示了如何读取python 读写配置文件.和修改配置中变量的值
1. from __future__ import with_statement
3. config=ConfigParser.ConfigParser()
4. with open('testcfg.cfg','rw') as cfgfile:
5. config.readfp(cfgfile)
6. name=config.get('info','name')
7. age=config.get('info','age')
8. print name
9. print age
10. config.set('info','sex','male')
11. config.set('info','age','21')
12. age=config.get('info','age')
13. print name
14. print age
首先
-
config=ConfigParser.ConfigParser()
-
name=config.get('info','name')