python解析模組(ConfigParser)使用方法_python

來源:互聯網
上載者:User

測試組態檔案test.conf內容如下:

複製代碼 代碼如下:

[first]
w = 2
v: 3
c =11-3

[second]

sw=4
test: hello

測試組態檔案中有兩個地區,first和second,另外故意添加一些空格、換行。

下面解析:

複製代碼 代碼如下:

>>> import ConfigParser
>>> conf=ConfigParser.ConfigParser()
>>> conf.read('test.conf')
['test.conf']
>>> conf.sections()   #獲得所有地區
['first', 'second']
>>> for sn in conf.sections():
...     print conf.options(sn)       #列印出每個地區的所有屬性
...
['w', 'v', 'c']
['sw', 'test']

獲得每個地區的屬性值:

複製代碼 代碼如下:

for sn in conf.sections():
    print sn,'-->'
    for attr in conf.options(sn):
        print attr,'=',conf.get(sn,attr)

輸出:

複製代碼 代碼如下:

first -->
w = 2
v = 3
c = 11-3
second -->
sw = 4
test = hello

好了,以上就是基本的使用過程,下面是動態寫入配置,

複製代碼 代碼如下:

cfd=open('test2.ini','w')
conf=ConfigParser.ConfigParser()
conf.add_section('test')         #add a section
conf.set('test','run','false')  
conf.set('test','set',1)
conf.write(cfd)
cfd.close()

上面是向test2.ini寫入配置資訊。

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.