Hi@akhtar,
You can use the tuple keyword in Python. It allows you to convert Numpy to a tuple. I have attached one example for your reference.
arr = np.array(((1, 2),(3, 4)))
array_of_tuples = map(tuple, arr)
tuples = tuple(array_of_tuples)
print(tuples)