def calculateTotalSum(*args): totalSum = 0 for number in args: totalSum += number print(totalSum) calculateTotalSum(15, 3, 7, 89, 2)
print("Total score for %s is %s ", name, score)