如何用python解析YAML字符串?

2022-02-23 00:00:00 python python-3.x python-2.x yaml

问题描述

我看到一个API和许多如何解析YAML文件的示例,但是字符串呢?


解决方案

这是迄今为止我见过的最好的示例演示方式:

import yaml

dct = yaml.safe_load('''
name: John
age: 30
automobiles:
- brand: Honda
  type: Odyssey
  year: 2018
- brand: Toyota
  type: Sienna
  year: 2015
''')
assert dct['name'] == 'John'
assert dct['age'] == 30
assert len(dct["automobiles"]) == 2
assert dct["automobiles"][0]["brand"] == "Honda"
assert dct["automobiles"][1]["year"] == 2015

相关文章