languages:
- Ruby
- Perl
- Python
websites:
YAML: yaml.org
Ruby: ruby-lang.org
Python: python.org...Perl: use.perl.org
python解析yaml文件后获取的数据:
{ languages: [ 'Ruby', 'Perl', 'Python' ],
websites:...{ YAML: 'yaml.org',
Ruby: 'ruby-lang.org',
Python: 'python.org',
Perl: 'use.perl.org'...str: 这是一段
多行
字符串
python解析yaml文件后获取的数据:
{ str: '这是一段 多行 字符串' }
多行字符串可以使用|保留换行符,也可以使用>折叠换行。...students': ['a', 'b']}
file = open(yaml_file, 'w', encoding='utf-8')
yaml.dump(py_object, file, Dumper