1 2 3 4 5 6
def mutiple_tuple(nums): temp = list(nums) product = 1 for x in temp: product *= x return product