jenkinsfile

This commit is contained in:
unknown 2020-04-03 14:59:01 +02:00
parent 0c3f5f0027
commit 979cbc061f

View File

@ -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 = ((float(helper[0]))/(float(sum))) * 100
print(sum)
globalPercent += sum
counter += 1