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()
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()