当前位置 : 主页 > 编程语言 > python >

Pytest学习-读取YAML文件

来源:互联网 收集:自由互联 发布时间:2022-08-10
#!/usr/bin/env python # -*- coding: UTF-8 -*- """ @Project :Pytest @File :read_data.py @IDE :PyCharm @Author :zhou @Date :2022/8/6 19:05 """ import yaml # 获取文件 f = open ( "../config/data.yaml" , encoding = "utf-8" ) # 读取
#!/usr/bin/env python
# -*- coding: UTF-8 -*-
"""
@Project :Pytest
@File :read_data.py
@IDE :PyCharm
@Author :zhou
@Date :2022/8/6 19:05
"""

import yaml

# 获取文件
f = open("../config/data.yaml", encoding="utf-8")
# 读取文件内容
data = yaml.safe_load(f)
# 其实data是字典格式数据
print(data["person"])

Pytest学习-读取YAML文件_Pytest

上一篇:Pytest学习-yaml+parametrize使用
下一篇:没有了
网友评论