1、YAML語法python
YAML是「另外一種標記語言」的外語縮寫,但爲了強調這種語言以數據作爲中心,而不是以置標語言爲重點,而用返璞詞從新命名。它是一種直觀的可以被電腦識別的數據序列化格式,是一個可讀性高而且容易被人類閱讀,容易和腳本語言交互,用來表達資料序列的編程語言。編程
在Python中使用YAML須要安裝PyYAML模塊。http://pyyaml.org/wiki/PyYAMLdom
一、塊序列描述編程語言
塊序列就是將描述的元素序列到Python的列表(List)中。 spa
import yaml obj = yaml.load( """ - flash - alex - tony - eric """ ) print(obj) #輸出結果:['flash', 'alex', 'tony', 'eric']
obj2 = yaml.load( """ - - flash - alex - tony - eric - - china - USA - Japan """ ) #輸出結果:[['flash', 'alex', 'tony', 'eric'], ['china', 'USA', 'Japan']]
二、塊映射描述htm
塊映射就是將描述的元素序列到Python的字典(dict)中,格式爲「key:value」。blog
import yaml print(yaml.load(""" name: Vorlin Laruknuzum sex: Male class: Priest title: Acolyte hp: [32, 71] sp: [1, 13] gold: 423 inventory: - a Holy Book of Prayers (Words of Wisdom) - an Azure Potion of Cure Light Wounds - a Silver Wand of Wonder """) ) # 輸出結果:{'name': 'Vorlin Laruknuzum', 'hp': [32, 71], 'class': 'Priest', 'sp': [1, 13], 'sex': 'Male', 'inventory': ['a Holy Book of Prayers (Words of Wisdom)', 'an Azure Potion of Cure Light Wounds', 'a Silver Wand of Wonder'], 'gold': 423, 'title': 'Acolyte'}