# welcome to softhunt.net
# Python program explaining
# numpy.ascontiguousarray() function
import numpy as np
my_tuple = ([1, 2, 3], [4, 5, 6])
print ("Input tuple :
", my_tuple)
out_arr = np.ascontiguousarray(my_tuple, dtype = np.int32)
print ("output array from input tuple :
", out_arr)