yaml file
Posted anyu686
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了yaml file相关的知识,希望对你有一定的参考价值。
- Why Need Yaml File
desinged to be clean and easy to be read .yml or .yaml
2 example
person:
name: mike
occupation: programmer
age: 29
gpa: !!str 3.5 # convert to string !!
fav_num: 1e+10
male: true
birthday: 1989-04-06 11:10:00
flaws: null
hobbies:
- football
- music
football: ["lfc","bfc"] # list
friends:
- name: "steph"
age: 22
- {name: "adam",age: 22}
description: > # donot preserve format
test1
test2
test3
signature: | # | preserve format
test4
test5
name: &refpoint
id: *refpoint # refer to another value , and give the value to id
以上是关于yaml file的主要内容,如果未能解决你的问题,请参考以下文章