[
{
"pwd_not_exict": {
"username": "13934977833",
"pwd": "123456",
"keys": "8888",
"expect": "账户不存在"
}
},
{
"pwd_not_exict": {
"username": "13933977833",
"pwd": "123456",
"keys": "8888",
"expect": "密码错误"
}
},
{
"username_is_none": {
"username": " ",
"pwd": "123456",
"keys": "8888",
"expect": "用户名不能为空"
}
}
]
# 读取json数据方法 values()用来获取字典里面的健值对
def get_data_json(filename):
with open(filename, encoding="utf-8") as f:
data = json.load(f)
list_case_data = []
for i in data:
for case_tuple in i.values():
list_case_data.append(tuple(case_tuple.values()))
print(list_case_data)
return list_case_data
这么写json数据也可以,之后获取的代码要变动(个人喜欢第二种写法)