What does this function do? What does it return for num = 5?
def Func(number): total = 0 while number > 0: total = total + number*(number-1) number = number - 1 return total
We need at least 10 more requests to produce the solution.
0 / 10 have requested this problem solution
The more requests, the faster the answer.