1. 程式人生 > >python ConfigParse模塊中的方法

python ConfigParse模塊中的方法

方法 lena span () parse section round 節點 add

1、config=ConfigParser.ConfigParser()

創建ConfigParser實例

2、config.sections()

返回配置文件中節序列

3、config.options(section)

返回某個項目中的所有鍵的序列

4、config.get(section,option)

返回section節中,option的鍵值

5、config.add_section(str)

添加一個配置文件節點(str)

6、config.set(section,option,val)

設置section節點中,鍵名為option的值(val)

7、config.read(filename)

讀取配置文件

8、config.write(obj_file)

寫入配置文件

python ConfigParse模塊中的方法