例如:
# My Listgroceries: - Milk - Eggs - Bread - Butter# My dictionarycontact: name: Ayush Sharma email: myemail@example.com
列表和字典经常被结合起来,以提供更复杂的数据结构。列表可以包含字典,而字典可以包含列表。
字符串
YAML 中的字符串不需要加引号。多行字符串可以用 |或>来定义。前者保留了换行符,而后者则没有。
例如:
my_string: | This is my string. It can contain many lines. Newlines are preserved.my_string_2: > This is my string. This can also contain many lines. Newlines aren't preserved and all lines are folded.