2、讀配置文件
import ConfigParser
cf=ConfigParser.ConfigParser()
cf.read(path) 讀配置文件(ini、conf)返回結果是列表
cf.sections() 獲取讀到的全部sections(域),返回列表類型
cf.options('sectionname') 某個域下的全部key,返回列表類型
cf.items('sectionname') 某個域下的全部key,value對
value=cf.get('sectionname','key') 獲取某個yu下的key對應的value值
cf.type(value) 獲取的value值的類型
(1)getint(section, option)
獲取section中option的值,返回int類型數據,因此該函數只能讀取int類型的值。
(2)getboolean(section, option)
獲取section中option的值,返回布爾類型數據,因此該函數只能讀取boolean類型的值。
(3)getfloat(section, option)
獲取section中option的值,返回浮點類型數據,因此該函數只能讀取浮點類型的值。
(4)has_option(section, option)
檢測指定section下是否存在指定的option,若是存在返回True,不然返回False。
(5)has_section(section)
檢測配置文件中是否存在指定的section,若是存在返回True,不然返回False。
3、動態寫配置文件
cf.add_section('test') 添加一個域
cf.set('test3','key12','value12') 域下添加一個key value對
cf.write(open(path,'w')) 要使用'w'