diff --git a/createWERandSRRFiles.py b/createWERandSRRFiles.py index a17286a..2d228c1 100644 --- a/createWERandSRRFiles.py +++ b/createWERandSRRFiles.py @@ -15,7 +15,7 @@ with open("helper.txt", "r") as f: helper = line.replace("Scores: (#C #S #D #I) ", "").split() sum = int(helper[0]) + int(helper[1]) + int(helper[2]) + int(helper[3]) print(sum) - sum = (int(helper[0])/int(sum)) * 100 + sum = ((int(helper[0]))/(int(sum))) * 100 print(sum) globalPercent += sum counter += 1