Question: 
Write a function to find the product of it’s kth index in the given tuples.


Model's Code:
def find_k_product(tuples_list, k):
    product = 1
    for tup in tuples_list:
        product *= tup[k]
    return product



Sample Correct Code:
def get_product(val) : 
	res = 1
	for ele in val: 
		res *= ele 
	return res 
def find_k_product(test_list, K):
  res = get_product([sub[K] for sub in test_list])
  return (res) 


Asserts:
assert find_k_product([(5, 6, 7), (1, 3, 5), (8, 9, 19)], 2) == 665
assert find_k_product([(6, 7, 8), (2, 4, 6), (9, 10, 20)], 1) == 280
assert find_k_product([(7, 8, 9), (3, 5, 7), (10, 11, 21)], 0) == 210


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

Test 645 of 974: 481/645 (74.57364341085271%): success