Python编程之yaml文件读写教程
程序员文章站
2022-05-10 22:42:24
Python编程之yaml文件读写教程
读取
import yaml
f = open("data.yaml", "r")...
读取
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 } """
上一篇: Python3数据结构详解
下一篇: HTML5利用json对象来存取复杂数据