接口测试-将数据写入csv中

abdstime 2020-01-19

将接口测试的返回值,写入到表格中

# 将testresult的数据写入csv中# w为覆盖写,a为追加写import csvtestresult = {"接口名称":"登录接口","测试结果":"测试通过"}file = open("test2.csv","w")for key,value,in testresult.items():    print(key,value)    file.write(str(key)+","+str(value)+"\n")file.close()

接口测试-将数据写入csv中

testresult = {"接口名称":"登录接口","测试结果":"测试通过"}file = open("test3.csv","w")for key,value,in testresult.items():    print(key,value)    file.write(str(key)+","+str(value)+",")file.write("\n")file.close()

接口测试-将数据写入csv中

相关推荐