removed print

This commit is contained in:
2020-02-13 16:22:18 -07:00
parent abe8e40f5a
commit 9a26e0527b

View File

@@ -21,12 +21,8 @@ def main():
dcTimeStart = time.time()
divideConcur.DivideConcur(count, P, Q)
dcTime += (time.time()-dcTimeStart)
print(i)
print("Highschool Time: ", highTime/10)
print("DC Time: ", dcTime/10)
saveArray = [count, highTime/10, dcTime/10]
print(saveArray)
with open("results.txt", "a") as myfile:
print(str(saveArray), file=myfile)
myfile.flush()