最佳答案
如何将 YAML 文件解析/读入 Python 对象?
For example, this YAML:
Person:
name: XYZ
对于这个 Python 类:
class Person(yaml.YAMLObject):
yaml_tag = 'Person'
def __init__(self, name):
self.name = name
顺便说一下,我正在使用 PyYAML。