Python讀取Yaml檔案

來源:互聯網
上載者:User

標籤:

近期看到好多使用Yaml檔案做為設定檔或者資料檔案的工程,隨即也研究了下,發現Yaml有幾個優點:可讀性好、和指令碼語言的互動性好(確實非常好)、使用實現語言的資料類型、有一個一致的資料模型、易於實現。

既然有這麼多好處,為什麼不用呢,隨後開始研究在Python中怎麼讀取Yaml檔案,下面我們來看下:

1、首先需要下載Python的yaml庫PyYAML,:http://pyyaml.org/,安裝過程就省略......

2、建立一個.py檔案

3、import yaml

4、f = open("test.yaml")

5、print yaml.load(f)

你會發現,列印出來的是一個字典,對了,Python讀取yaml檔案後,是以字典的形式存放,我們來看下具體的代碼:

Yaml檔案

name: Tom Smithage: 37spouse:    name: Jane Smith    age: 25children: - name: Jimmy Smith   age: 15 - name1: Jenny Smith   age1: 12

 

Python代碼:

import yaml,os#擷取檔案全路徑filename = os.path.join(os.path.dirname(__file__),‘test.yaml‘).replace("\\","/")f = open(filename)y = yaml.load(f)print s

 

運行結果:

{‘age‘: 37, ‘spouse‘: {‘age‘: 25, ‘name‘: ‘Jane Smith‘}, ‘name‘: ‘Tom Smith‘, ‘children‘: [{‘age‘: 15, ‘name‘: ‘Jimmy Smith‘}, {‘age1‘: 12, ‘name1‘: ‘Jenny Smith‘}]}

 

是不是非常方便,哈哈。

Python讀取Yaml檔案

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.