欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

Python编程之yaml文件读写教程

程序员文章站 2022-05-10 22:42:24
Python编程之yaml文件读写教程 读取 import yaml f = open("data.yaml", "r")...

Python编程之yaml文件读写教程

读取

import yaml

f = open("data.yaml", "r")
data = yaml.load(f)
f.close()

print(data)
"""
[
    {
        'name': 'PyYAML', 
        'status': 4, 
    },
    {
        'name': 'PySyck', 
        'status': 5, 
    }
]
"""

附:要读取的yaml文件

import yaml

new_date = {
    "name": "Tom",
    "age": 23,
    "sex": "man"
}

f = open("data1.yaml", "w")
yaml.dump(new_date, f)
f.close()

"""
{
  age: 23,
  name: Tom,
  sex: man
}
"""