91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Python內置模塊ConfigParser實現配置讀寫功能的方法

發布時間:2020-10-02 10:36:57 來源:腳本之家 閱讀:204 作者:蒼松 欄目:開發技術

本文實例講述了Python內置模塊ConfigParser實現配置讀寫功能的方法。分享給大家供大家參考,具體如下:

用于對特定的配置進行操作,當前模塊的名稱在 python 3.x 版本中變更為 configparser。

#配置文件test.cfg
[section1]
k1 = v1
k2 :v2
k3 = 1
[section2]
k1 = v1

#coding:utf-8
import ConfigParser
config = ConfigParser.ConfigParser()
config.read('test.cfg')
# ########## 讀 ##########
#獲取所有sections.
secs = config.sections()
print secs #['section1', 'section2']
#獲取制定section的鍵key
options = config.options('section1')
print options  #['k1', 'k2', 'k3']
#獲取指定section的鍵值對key-value
item_list = config.items('section1')
print item_list #[('k1', 'v1'), ('k2', 'v2'), ('k3', '1')]
#獲取指定key的value
# 獲取字符串類型的value
val1 = config.get('section1','k1')
# 獲取整型的value
val2 = config.getint('section1','k3')
# ########## 增改刪 ##########
# 增加section
if not config.has_section('section3'):
  config.add_section('section3')
  config.write(open('test.cfg', "w"))
#設置option
if not config.has_section('section3'):
  config.set('section3','k1',11111)
  config.write(open('test.cfg', "w"))
# 移除option
ret = config.remove_option('section3','k1')
print ret  #True or False
config.write(open('test.cfg', "w"))
# 移除section
ret = config.remove_section('section3')
print ret  #True or False
config.write(open('test.cfg', "w"))

更多關于Python相關內容感興趣的讀者可查看本站專題:《Python數據結構與算法教程》、《Python Socket編程技巧總結》、《Python函數使用技巧總結》、《Python字符串操作技巧匯總》、《Python入門與進階經典教程》及《Python文件與目錄操作技巧匯總》

希望本文所述對大家Python程序設計有所幫助。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

滁州市| 利川市| 隆昌县| 松潘县| 儋州市| 马关县| 盐源县| 绵阳市| 恩平市| 武陟县| 会昌县| 林甸县| 托里县| 旌德县| 景洪市| 静安区| 宁蒗| 乌兰浩特市| 泾川县| 阳新县| 德保县| 呼和浩特市| 礼泉县| 甘谷县| 宣威市| 沙田区| 丰镇市| 清河县| 山丹县| 百色市| 洪湖市| 高邑县| 巴里| 上饶市| 图木舒克市| 宁河县| 临潭县| 遂宁市| 虎林市| 绥阳县| 准格尔旗|