python---之yaml

zxyhhjs2017發表於2018-05-26

一、YAML語法

  YAML是“另一種標記語言”的外語縮寫,但為了強調這種語言以資料做為中心,而不是以置標語言為重點,而用返璞詞重新命名。它是一種直觀的能夠被電腦識別的資料序列化格式,是一個可讀性高並且容易被人類閱讀,容易和指令碼語言互動,用來表達資料序列的程式語言。

  在Python中使用YAML需要安裝PyYAML模組。http://pyyaml.org/wiki/PyYAML

  1、塊序列描述

    塊序列就是將描述的元素序列到Python的列表(List)中。   

1
2
3
4
5
6
7
8
9
10
11
12
13
import yaml
obj = yaml.load(
"""
- flash
- alex
- tony
- eric
"""
)
print(obj)
 
 
#輸出結果:['flash', 'alex', 'tony', 'eric'] 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
obj2 = yaml.load(
    """
-
    - flash
    - alex
    - tony
    - eric
-
    - china
    - USA
    - Japan
    """
)
 
 
#輸出結果:[['flash', 'alex', 'tony', 'eric'], ['china', 'USA', 'Japan']]

  2、塊對映描述

    塊對映就是將描述的元素序列到Python的字典(dict)中,格式為“key:value”。

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
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', 'inve

轉載:https://www.cnblogs.com/Rambotien/p/5576175.html

相關文章