jsonFile=open('JSON_TwoServers_Output.json',"w")#It opens the JSON file
jsonFile.write(json.dumps(data1,indent=True))#It writes the updated data to the JSON file
jsonFile.close()#It closes the file
#================================ Calling the ExcelOutput object, outputs the outcomes of the statistical analysis in Excel files =============================================#