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