Question: 
Write a python function to calculate the product of all the numbers of a given tuple.


Model's Code:
def mutiple_tuple(tup):
    product = 1
    for num in tup:
        product *= num
    return product



Sample Correct Code:
def mutiple_tuple(nums):
    temp = list(nums)
    product = 1 
    for x in temp:
        product *= x
    return product


Asserts:
assert mutiple_tuple((4, 3, 2, 2, -1, 18)) == -864
assert mutiple_tuple((1,2,3)) == 6
assert mutiple_tuple((-2,-4,-6)) == -48


Tests:
Test 1 of 3: PASS
Test 2 of 3: PASS
Test 3 of 3: PASS

Test 925 of 974: 710/925 (76.75675675675676%): success